I know barely enough c++ to be dangerous, was proficient with BASIC in the 80's, and can (somewhat) grasp the syntax in the VBA editor. I am currently teaching myself VBA, but do not want to reinvent the wheel.
It would be greatly appreciated if someone will point me in the right direction.
(or at least let me know if I'm in over my head!!).
Thanks
I am using the follow code to date-time stamp entries in the adjecent cell: (Thanks Zathras and jcrater!)
I would like to put the date and time stamp into the comment box of the cell the data is entered in.
Thanks for any help, it is greatly appreciated!
It would be greatly appreciated if someone will point me in the right direction.
(or at least let me know if I'm in over my head!!).
Thanks
I am using the follow code to date-time stamp entries in the adjecent cell: (Thanks Zathras and jcrater!)
Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Count > 1 Then Exit Sub
If Not Intersect(Range("A1:AA2000"), .Cells) Is Nothing Then
Application.EnableEvents = False
With .Offset(0, 1)
.NumberFormat = "MM/dd/yy hh:mm:ss"
.Value = Now
End With
Application.EnableEvents = True
End If
End With
End Sub
Thanks for any help, it is greatly appreciated!