Here is my code currently:
Range("Y1").Select
Range(Cells(2, ActiveCell.Column), Cells(WorksheetFunction.CountA(Columns(ActiveCell.Column)), ActiveCell.Column)).Select
This is selecting all the values in column Y minus the header. I would like to select all data in Column Y:Column AO minus the headers.
Range("Y1").Select
Range(Cells(2, ActiveCell.Column), Cells(WorksheetFunction.CountA(Columns(ActiveCell.Column)), ActiveCell.Column)).Select
This is selecting all the values in column Y minus the header. I would like to select all data in Column Y:Column AO minus the headers.