Having trouble simply copying all cells from a sheet and pasting them into another sheet. Here's my code that applies to this:
Sheets("Office FINAL").Select
Cells.Select
Selection.Copy
Sheets("Office REAL FINAL").Select
Range("A1").Select
Selection.PasteSpecial
ActiveSheet.Range("A1").Select
Application.CutCopyMode = False
Any thoughts on why I'm receiving this error?