Hello jrags01,
This will start with cell "A1" on the ActiveSheet. You can change this to were you data starts. The macro will find the last row and column with data or a formula in it. The first row of the range is assumed to be the header row. All columns that are empty within the range are deleted.
Sub DeleteEmptyColumns()
Dim c As Long
Dim LastCol As Variant
Dim LastRow As Variant
Dim Rng As Range
Set Rng = Range("A1")
LastCol = Cells.Find("*", , xlFormulas, xlWhole, xlByColumns, xlPrevious, False, False, False).Column
LastRow = Cells.Find("*", , xlFormulas, xlWhole, xlByRows, xlPrevious, False, False, False).row
Set Rng = Rng.Resize(LastRow - Rng.row + 1, LastCol - Rng.Column + 1)
Set Rng = Intersect(Rng, Rng.Offset(1, 0))
For c = Rng.Columns.Count To 1 Step -1
If Application.CountA(Rng.Columns(c)) = 0 Then
Rng.Columns(c).EntireColumn.Delete
End If
Next c
End Sub
Bookmarks