- Katılım
- 21 Ekim 2008
- Mesajlar
- 2,323
- Excel Vers. ve Dili
- Office 2013 - Eng
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Sub Gizle()
Dim i As Long
Application.ScreenUpdating = False
For i = 1 To [B65536].End(3).Row
If Cells(i, "b").Interior.ColorIndex = 3 Then
Rows(i).EntireRow.Hidden = True
End If
Next i
Application.ScreenUpdating = True
End Sub
Sub Göster()
Application.ScreenUpdating = False
Cells.EntireRow.Hidden = False
Application.ScreenUpdating = True
End Sub
Sub gizle()
Dim myarr()
myarr = Array("2", "5", "17", "22", "28", "33", "35", "41", "46")
For i = 0 To 8
Rows(myarr(i)).Hidden = True
Next
End Sub
Sub göster()
Dim myarr()
myarr = Array("2", "5", "17", "22", "28", "33", "35", "41", "46")
For i = 0 To 8
Rows(myarr(i)).Hidden = False
Next
End Sub
Option Explicit
Sub Gizle()
Dim i As Long
Application.ScreenUpdating = False
For i = 1 To [a65536].End(3).Row
If Cells(i, "a").Value = "" Then
Rows(i).EntireRow.Hidden = True
End If
Next i
Application.ScreenUpdating = True
End Sub
Sub Göster()
Application.ScreenUpdating = False
Cells.EntireRow.Hidden = False
Application.ScreenUpdating = True
End Sub
Option Explicit
Private Sub ToggleButton1_Click()
Dim i As Long, c As Range, say As Variant
Application.ScreenUpdating = False
If ToggleButton1.Value = False Then
say = Application.Match("ACCOUNT TRANSFERS", [A:A], 0)
For i = 1 To say
If Cells(i, "a") = "" [COLOR=red]And Cells(i, "d") = ""[/COLOR] Then
Rows(i).EntireRow.Hidden = True
End If
Next i
ToggleButton1.Caption = "[B]Göster[/B]"
Else
Cells.EntireRow.Hidden = False
ToggleButton1.Caption = "[B]Gizle[/B]"
End If
Application.ScreenUpdating = True
End Sub