سلمت الايادي استاذ عادل
وهذه مساهمة لجعل الزر يعمل بحالتين للاخفاء والاظهار
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
If CommandButton1.Caption = "اخفاء الفارغ" Then
For i = 7 To 51
If Cells(i, 33) = "" Then
Cells(i, 33).EntireRow.Hidden = True
End If
Next
CommandButton1.Caption = "اظهار الفارغ"
Else
CommandButton1.Caption = "اظهار الفارغ"
For i = 7 To 51
If Cells(i, 33) = "" Then
Cells(i, 33).EntireRow.Hidden = False
End If
Next
CommandButton1.Caption = "اخفاء الفارغ"
Application.ScreenUpdating = True
End If
End Sub
استبدل هذا الكود بكود الاستاذ عادل (هو نفس الكود بس تعديل بسيط)
ابواحمد