Hi Guys,
Can you please help me figure out why the code below doesn't seem to work for MS Excel for Office 365? Thanks in advance!
Zed
Can you please help me figure out why the code below doesn't seem to work for MS Excel for Office 365? Thanks in advance!
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("G:G")) Is Nothing Then
Range("J" & Target.Row).Value = Now
End If
End Sub
Zed