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
With Target
If .Count > 1 Then Exit Sub
If .Value = "" Then
Cells(.Row, "B") = ""
Exit Sub
End If
If UCase(Replace(Replace(.Value, "ı", "I"), "i", "İ")) = "TESLİM EDİLDİ" Then
Cells(.Row, "B") = Format(Date, "dd.mm.yyyy")
End If
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B:C")) Is Nothing Then Exit Sub
On Error Resume Next
With Target
If .Row = 0 Then Exit Sub
Target.Offset(0, -2) = ""
If .Value = Empty Then Exit Sub
Target.Offset(0, -2) = Format(Now, "dd.mm.yyyy:hh:mm")
End With
End Sub