I was wondering if these commands could be rewritten to a single line and avoid having to select the range before copying the data. I need everything in the sheet from the second row on starting with the first column. I've tried a few variations but having found anything that works.
Code:
Range("A2").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.Copy