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, Range("A:A")) Is Nothing Then Exit Sub
On Error GoTo Son
Application.EnableEvents = False
With Target
.Value = .Value * 5
End With
Application.EnableEvents = True
Son:
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("a:a")) Is Nothing Then Exit Sub
If Target.Count <> 1 Then Exit Sub
If IsNumeric(Target) Then
Application.EnableEvents = False
Target = Target * [g2]
Application.EnableEvents = True
End If
End Sub