Hello Amy Kate,
Thanks for posting the workbook. I revised the macro and attached it to button on the "After" sheet. When clicked it will select the columns from "F" to the last column with data. Here is the macro which has been added to the attached workbook.
Sub SelectColumns()
Dim AltRng As Range
Dim LastCol As Variant
Dim Rng As Range
Dim RngEnd As Range
Dim Wks As Worksheet
Set Wks = ActiveSheet
LastCol = Wks.Cells.Find("*", , xlValues, xlWhole, xlByColumns, xlPrevious, False).Column
For C = 6 To LastCol Step 2
Set Rng = Wks.Columns(C)
If AltRng Is Nothing Then Set AltRng = Rng
Set AltRng = Union(AltRng, Rng)
Next C
AltRng.Select
End Sub
Bookmarks