Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A1:P500")) Is Nothing Then Exit Sub
Dim ccc As String
ccc = Format(Date + Time, "mm/dd/yy hh:mm") _
& " " & Target.Value ' -- Application.UserName
If Target.Comment Is Nothing Then
Target.AddComment.Text ccc
Else
Target.Comment.Text (Target.Comment.Text & Chr(10) & ccc)
End If
Target.Comment.Shape.TextFrame.AutoSize = True
End Sub
This version will cover A1 thru P500.

Signature
Gary''s Student - gsnu2007i
> Hi Everyone,
>
[quoted text clipped - 25 lines]
>
> Buck
buck.chicagocraigslist@gmail.com - 31 May 2008 06:38 GMT
On May 30, 5:38 pm, Gary''s Student
<GarysStud...@discussions.microsoft.com> wrote:
> Private Sub Worksheet_Change(ByVal Target As Range)
> If Intersect(Target, Range("A1:P500")) Is Nothing Then Exit Sub
[quoted text clipped - 45 lines]
>
> - Show quoted text -
Thanks Gary!!
Anyone have an idea on allowing this script to see Formulas?