I have two sheets "ABC" & "XYZ" I would like to take the data from Sheet "ABC" D28:AZ28 (which is currently a =Sum formula) and put it on the bottom row (second column) of sheet "XYZ". I would also like the first Column of that row to be the date in Cell "A1" of sheet "ABC"
I haven't figured out the date part, and everytime I try a macros I get error message (appears that it is trying to alter the sum formula).
Sub Copy_Method()
Sheets("ABC").Range("D28:AZ28").Copy Destination:=Sheets("XYZ").Range("B2")
End Sub
And the Error I'm getting in the Cells in the "XYZ" Sheet is;
#REF! [=Sum(#REF)]
Appreciate the assistance.