I have data in column A and would like a time Stamp in column B when data changes in column A.
Now here is the tricky part: Column A's values are formula based, from a Vlookup table. This Vlookup table has dde links. So there is no manual entering of the spreadsheet ever.
The below code works well if you have to enter data into column A but will not work for the above scernario or even if you say. cell A1 = C1+D1
. By changing either C1 or D1 will change A1 ... but this doesn't fire up the Macro.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Cells(Target.Row, 2).Value = Now
End If
End Sub