I'm trying to set-up two macros between two workbooks. The workbook to be copied will have a macro that resembles (simplified for clarity):
Notice how columns B and D are not copied.
The destination workbook's paste macro looks like this:
I keep getting a "Object dosen't support this property or method" error. Any solutions?
Code:
Sub Button1_Click()
Range("A1:A10, C1:C10, E1:E10").Copy
End Sub
Notice how columns B and D are not copied.
The destination workbook's paste macro looks like this:
Code:
Sub Button1_Click()
Range("A1:A10, C1:C10, E1:E10").Select
Selection.Paste
End Sub
I keep getting a "Object dosen't support this property or method" error. Any solutions?