Hi am using the following code to copy the active row from one sheet to another.
This works fine but it still copies the formulas. How can I ensure it copies only cell values?
Thanks
Code:
ActiveCell.EntireRow.Copy Destination:=Sheets("Archive").Range("A" & Rows.Count).End(xlUp).Offset(1)
MsgBox "Row has been archived", vbInformation, "Data Archived"
This works fine but it still copies the formulas. How can I ensure it copies only cell values?
Thanks