Hi all,
I am using a section of code to automatically update a column with date/time stamp and it works perfectly, I am looking for a way to do this twice in the same spreadsheet though. I.e. when someone updates Column B, Colum C is updated and when someone updates Column D, Column E is updated. Need the same to occur when columns F and G are updated too. Below is the code I am currently using:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column = 2 Then
Target.Offset(0, 1).Value = Now()
End If
End Sub
Please helP! Thanks...
Bookmarks