I'm getting a Runtime error 438 Object does not support this property or method on the bolded line of code below. It's a pretty simple copy and paste so I'm not sure why. The named range "Plan_Name_Hdr" exists in the destination workbook, supp.
Code:
Dim model_one As String, model_one_Full As String, supp As String
Dim x As Integer
supp = "Exhibits v2.xlsm"
model_one = "model_1.xlsm"
model_one_Full = "C:\Users\user1\Desktop\Doc" & "\" & model_one
Workbooks.Open Filename:=model_one_Full
'Used for offest formulas
x = 0
Sheets("Main").Activate
[b]Range("A13").Copy Destination:=Workbooks(supp).Range("Plan_Name_Hdr").Offset(0, x)[/b]