Dün siteden bulduğum bir kodu yine aynı anda aynı sayfadaki başka bir hücre için kullanmak istiyorum.(ilave olarak D hücresine veri girildiğinde B hücresine tarih ve saat yazsın istiyorum) Fakat yapamadım yardımcı olur musunuz ? Kod aşağıdaki gibidir.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [G4:G65500]) Is Nothing Then Exit Sub
Cells(Target.Row, "C") = Format(Now, "dd.mm.yyyy--hh:mm:ss")
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [G4:G65500]) Is Nothing Then Exit Sub
Cells(Target.Row, "C") = Format(Now, "dd.mm.yyyy--hh:mm:ss")
End Sub