Hey Guys,

Does anyone know how to time stamp a cell just by clicking on it?

I had some code that looks like this but this doesn't work:

Private Sub Worksheet_Change(ByVal Target As Range)
Range("A" & Target.Row) = Now()
End Sub

Any suggestions on this, will be greatly appreciated.

Ever