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 Not Intersect(Target, [[COLOR="Red"]A1:A50[/COLOR]]) Is Nothing Then Cells(Target.Row, "B") = Format(Date, "dd/mmmm/yyyy")
End Sub
Ekteki dosyayı inceleyiniz.A sütununa herhangi bir yazı yazıldığında b sütununa o anki tarihi otomatik atsın istiyorum. nasıl yaparım?
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, [[COLOR="Red"]A1:A50[/COLOR]]) Is Nothing Then Cells(Target.Row, "B") = Format(Date, "dd/mmmm/yyyy")
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1:A50")) Is Nothing Then
Sutun = Sheets("Sayfa2").Cells(Target.Row, Columns.Count).End(1).Column + 1
Sheets("Sayfa2").Cells(Target.Row, Sutun) = CDate(Now)
Sheets("Sayfa2").Cells(Target.Row, Sutun + 1) = Target.Value
Sheets("Sayfa2").Cells.EntireColumn.AutoFit
End If
End Sub
Deneyiniz.
Kod:Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("A1:A50")) Is Nothing Then Sutun = Sheets("Sayfa2").Cells(Target.Row, Columns.Count).End(1).Column + 1 Sheets("Sayfa2").Cells(Target.Row, Sutun) = CDate(Now) Sheets("Sayfa2").Cells(Target.Row, Sutun + 1) = Target.Value Sheets("Sayfa2").Cells.EntireColumn.AutoFit End If End Sub