Is there a way to condense the following code?
What I am doing is downloading data into a text file. Then opening the text file and copying the text file range into an Excel file.
Thanks for your help.
Code:
Range("A2").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.Copy
What I am doing is downloading data into a text file. Then opening the text file and copying the text file range into an Excel file.
Thanks for your help.