- Katılım
- 6 Kasım 2005
- Mesajlar
- 300
- Altın Üyelik Bitiş Tarihi
- 06-09-2023
iyi bayramlar...dosya ektedir...bu bayram gününde yardımlarınız için şimdider teşekkürler...
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [B1]) Is Nothing Then Exit Sub
Application.EnableEvents = False
If Target.Value = "ANKARA" Then
Range("F1:F65536").Delete (xlUp)
Range("B1:B65536").Delete (xlUp)
End If
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo hata
If Intersect(Target, [B1]) Is Nothing Then Exit Sub
Application.EnableEvents = False
If Target.Value = "" Then Exit Sub
Set k = Range("B2:B65536").Find(Target.Value, , xlValues, xlWhole)
Set c = Range("F1:F65536").Find(Target.Value, , xlValues, xlWhole)
If Not k Is Nothing Then
Rows(k.Row).Delete
End If
If Not c Is Nothing Then
Rows(c.Row).Delete
End If
hata:
Application.EnableEvents = True
End Sub