sward175
Özel Üye
- Katılım
- 4 Şubat 2011
- Mesajlar
- 1,196
- Excel Vers. ve Dili
- Excel Vers. ve Dili:
Microsoft Office Professional Plus 2016
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[FONT="Arial Narrow"][B]Private Sub Worksheet_Change(ByVal Target As Range)[/B]
If Target.Address(0, 0) <> "B1" And Target.Address(0, 0) <> "C1" Then Exit Sub
If Intersect(Target, [B1, C1]) Is Nothing Then Exit Sub
Application.ScreenUpdating = False: Application.Calculation = xlCalculationManual
Columns("D:EQ").Hidden = False
If [B1] > [C1] Then
MsgBox "B1, C1'den küçük olmalıdır!..": Exit Sub: End If
For sut = 4 To 147
If Cells(3, sut) < [B1] Or Cells(3, sut) > [C1] Then Columns(sut).EntireColumn.Hidden = True
Next: Application.ScreenUpdating = True: Application.Calculation = xlCalculationAutomatic
[B]End Sub[/B][/FONT]
Sub Menu_Reset()
Application.CommandBars("Ply").Enabled = True
Application.CommandBars("Ply").Reset
End Sub