I would like to conduct the following: 1. Find the last column with data from cell A4 until end 2. Back calculate last column by - 6 columns 3. Select the entire range of columns from -6 to last column (last code listed below does not work)
lastcol = Cells(4, Columns.Count).End(xlToLeft).Column
fircol = lastcol - 6
Columns(fircol & ":" & lastcol).Select