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, [b:b]) Is Nothing Then Exit Sub
Target.Offset(0, -1) = Date
End Sub
Sayfa sekmesi üzerine sağ klik yapıp kod görüntüle deyiniz. Kodu buraya uygulayacaksınız.
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Intersect(Target, [b:b]) Is Nothing Then Exit Sub
Target.Offset(0, -1) = Date
If Target = "" Then
Target.Offset(0, -1) = ""
End If
End Sub
Kodu ThisWorkbook'un içine uygulayınız.
Kod:Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) If Intersect(Target, [b:b]) Is Nothing Then Exit Sub Target.Offset(0, -1) = Date If Target = "" Then Target.Offset(0, -1) = "" End If End Sub
Ekli dosyayı inceleyiniz.
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
On Error Resume Next
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
If Intersect(Target, [c:c]) Is Nothing Then Exit Sub
Target.Offset(0, -2) = Date
If Target = "" Then
Target.Offset(0, -2) = ""
End If
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub
Bu şeklil deneyiniz.
Kod:Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) On Error Resume Next Application.ScreenUpdating = False Application.Calculation = xlCalculationManual If Intersect(Target, [c:c]) Is Nothing Then Exit Sub Target.Offset(0, -2) = Date If Target = "" Then Target.Offset(0, -2) = "" End If Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic End Sub