Hope someone can help me :)
I have data in sheet A, and formula's in sheet B. The formula's in sheet B are only in row 2.
So if sheet A has 33 rows filled with data, I switch to sheet B and drag the data in row 2 down to 33 to match it with sheet A.
Is it possible to do this with VBA?
I also tried just copying them over but in sheet B, but they are in a different order, so that's not really a solution for me.
What I tried is:
Private Sub Worksheet_Activate()
Range("A2:N2").Select
Selection.AutoFill Destination:=Range("A2:N" & Lastrow), Type:=xlFillDefault
End Sub