اذهب الي المحتوي
أوفيسنا

الردود الموصى بها

قام بنشر

المطلوب إخفاء الصفوف التي جميع الحقول (الستة الاعمدة )  فيها صفر او فراغ 

وفق الملف الاكسل المرفق الذي به بيانات علي سبيل المثل 

كون عمود الختامي المدين والدائن هما معادلات احتساب 

hide.xlsx

  • أفضل إجابة
قام بنشر

استبدل اسم الصفحة الى  Salim  ( لحسن نسح الكود ولصقه بدون مشاكل اللغة العربية)

ثم نفذ هذا الكود

Option Explicit

Dim sh As Worksheet
Dim Rg As Range, cel As Range
Dim my_formula
'+++++++++++++++++++++++
Sub hid_Rows()
Application.ScreenUpdating = False
 show_all
For Each cel In Rg.Columns(2).Cells
    my_formula = _
      Application.CountA(cel.Resize(, 4))
      If my_formula = 0 Then
        cel.EntireRow.Hidden = True
      End If
Next
Application.ScreenUpdating = True
End Sub
'++++++++++++++++++++++++++++
Sub show_all()
 Set sh = Sheets("Salim")
 Set Rg = sh.Range("B4").CurrentRegion
 Rg.EntireRow.Hidden = False
End Sub

الملف مرفق

Yesk.xlsm

  • Like 4

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information