I have formulas that I need to change that have outputs and solutions. I have created an entire row A46:CV42
that shows every effected Value (formulas solution) in each cell. What I need is to record every single change to that entire row automatically every time any cell value is changed. Be it on the same sheet below it in recurring rows or on another sheet.
I have tried some things I have found but they all deal with individual cells being changed or when you manually change data.
Example of what I've tried. I am a novice in this area.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then
a = Sheets("Sheet2").Cells(Rows.Count, "A").End(xlUp).Row + 1
Sheets("Sheet2").Range("A" & a).Value = Sheets("Sheet1").Range("A").Value
End If
End Sub
I'm not quite sure if you want row
46
or row42
. Please see below an approach, and comments in the code for further details:This might not be the ideal solution, but i'm looking forward to see other solutions... meanwhile, I think it does what you've asked.