I have one open xls file and I am opening a second one to copy data from. 1. Last istruction does not paste the content. 2. If I want to copy 250 cells, when closing the file, how can I save the date in the memory? THANKS
Workbooks.Open ("C:\XLSX\1 (1)Output.xlsx")
Sheets("1(1).MatchType1").Select
Range("B2").Select
Range("B2:B101").Select
Selection.Copy
Workbooks("1 (1)Output.xlsx").Close
'Workbooks("RESULTS Tables 1 and 2.xlsx").Select
Sheets("Result 1").Select
Range("B3:cw3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
Workbooks.Open ("C:\XLSX\1 (1)Output.xlsx")
Sheets("1(1).MatchType1").Select
Range("B2").Select
Range("B2:B101").Select
Selection.Copy
Workbooks("1 (1)Output.xlsx").Close
'Workbooks("RESULTS Tables 1 and 2.xlsx").Select
Sheets("Result 1").Select
Range("B3:cw3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True