- Katılım
- 26 Ağustos 2015
- Mesajlar
- 7
- Excel Vers. ve Dili
- 2013
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[SIZE="2"][B]Private Sub Worksheet_Change(ByVal Target As Range)[/B]
If Intersect(Target, [A2:E2]) Is Nothing Then Exit Sub
Call gizlegöster
[B]End Sub[/B]
[B]Sub gizlegöster()[/B]
If Cells(2, 1) = "+" Then
Rows("4:7").EntireRow.Hidden = False
Else
Rows("4:7").EntireRow.Hidden = True
End If
If Cells(2, 2) = "+" Then
Rows("8:10").EntireRow.Hidden = False
Else
Rows("8:10").EntireRow.Hidden = True
End If
If Cells(2, 3) = "+" Then
Rows("11:14").EntireRow.Hidden = False
Else
Rows("11:14").EntireRow.Hidden = True
End If
If Cells(2, 4) = "+" Then
Rows("15:16").EntireRow.Hidden = False
Else
Rows("15:16").EntireRow.Hidden = True
End If
If Cells(2, 5) = "+" Then
Rows("17:19").EntireRow.Hidden = False
Else
Rows("17:19").EntireRow.Hidden = True
End If
[B]End Sub[/B]
[/SIZE]