Hi All
I am having some issues with a macro. I have an open file and would like to automatically copy range("A2") from that file and Paste it in another workbook("Final.xlsx") So I have this:
Sub Macro()
Range("A2").Select
Selection.Copy Destination:=Workbooks("Final.xlsx").Worksheets("Blad1").Range("B2")
End Sub
But it gives an error at the line Selection.copy. Anybody seeing whats wrong?
Is it possible to change the Range("B2") to a Cells("B" & i) with a for i=2 to 10
Could someone please help me with this issue
Thanks very much!
I am having some issues with a macro. I have an open file and would like to automatically copy range("A2") from that file and Paste it in another workbook("Final.xlsx") So I have this:
Sub Macro()
Range("A2").Select
Selection.Copy Destination:=Workbooks("Final.xlsx").Worksheets("Blad1").Range("B2")
End Sub
But it gives an error at the line Selection.copy. Anybody seeing whats wrong?
Is it possible to change the Range("B2") to a Cells("B" & i) with a for i=2 to 10
Could someone please help me with this issue
Thanks very much!