I want when ever some Buddy makes changes in column A any cell. i want the dateof modification in column B
I believe the Change (worksheet event) is what you're looking for.Check it out in VBA Help.
In Sheet1 (or whatever sheet):Private Sub Worksheet_Change(ByVal Target As Range)If Target.Column = 1 ThenTarget.Worksheet.Cells(Target.Row, 2) = Date ' or Time or Now (forboth)End IfEnd Sub
A procedure could not be triggered bya change in the value of cell. However whatu can try is making the workbookshare and one can see the track changes so see when was any entry updated on acell
: A procedure could not be triggered by a change in the value of cell.Isn't that what the change event is for?Private Sub Worksheet_Change(ByVal Target As Range)' Do somethingEnd Sub
Try this in the worksheet codePrivate Sub Worksheet_Change(ByVal Target As Range)If Intersect(Target, ActiveSheet.Range("A:A")) Is Nothing Then Exit SubRange("B" & Target.Row).Value = Now()End Sub