I was trying to update modified/value entered time in a column's cell of Sheet2 in a workbook where in Sheet1 if a specific column's cell value get changed.
I'm using the below code which is not working, did i missed anything?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("Timesheet[Start Time]")) Is Nothing Then
Sheet2.Cells(Target.Row, 1).Value = Now()
End If
End Sub
Hope this is possible..
Please help me out.. Thanks in advance :)
Sheet2.Cells(Target.Row, 1).Value = Now()toSheets("Sheet2").Cells(Target.Row, 1).Value = Now()- Scott Craner