Trying to copy something from Sheet1 to Sheet 9 but keep getting subscript out of range error. Created a dummy excel just to test out the code and it works there but doesn't work in my main one. Please help.
Sub Copy()
Sheets("Sheet1").Range("B5").Copy Destination:=Sheets("Sheet9").Range("K1")
End Sub