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, [A:A]) Is Nothing Then Exit Sub
If Target.Value = "" Then
Target.Offset(0, 1) = ""
Else
Target.Offset(0, 1) = Format(Now, "hh:mm:ss")
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A:A,E:E]) Is Nothing Then Exit Sub
If Target.Column = 1 Then
If Target.Value = "" Then
Target.Offset(0, 2) = ""
Else
Target.Offset(0, 2) = Format(Now, "hh:mm:ss")
End If
End If
If Target.Column = 5 Then
If Target.Value = "" Then
Target.Offset(0, 1) = ""
Else
Target.Offset(0, 1) = Format(Now, "hh:mm:ss")
End If
End If
End Sub