- Katılım
- 22 Mayıs 2009
- Mesajlar
- 1,017
- Excel Vers. ve Dili
- Office 2003
Option Explicit
Dim İLK_VERİ As Variant
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [S17:S62,V17:V62]) Is Nothing Then Exit Sub
If Target = "" Then
İLK_VERİ = Empty
Exit Sub
End If
If IsNumeric(Target) Then
Application.EnableEvents = False
Target = İLK_VERİ + Target
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
İLK_VERİ = Target
End Sub