- Katılım
- 24 Şubat 2009
- Mesajlar
- 1,077
- Excel Vers. ve Dili
- 2016
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Public deger As Long
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [a1:a15,b1:b15,c1:c15]) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target = Target + deger
Application.EnableEvents = True
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
deger = Target.Value
End Sub
Public deger As Long
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [a1:a15,b1:b15,c1:c15]) Is Nothing Then Exit Sub
Application.EnableEvents = False
[color=red] If Target.Value = 0 Then deger = 0: Target = 0[/color]
Target = Target + deger
Application.EnableEvents = True
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, [a1:a15,b1:b15,c1:c15]) Is Nothing Then Exit Sub
deger = Target.Value
End Sub