I’m trying to get the text “Record Changed” to appear in
column H of the row where the data was changed(A1 through D10). I don’t know all the syntax for VBA in excel but tried Offset
because it looked like it does what I needed.
It keeps the text in the same row but doesn’t keep it in column H.
Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("A1:D10")) Is Nothing Then With Range(Target.Address).Offset(, 7) .Cells = "Record Changed" End With End If End Sub