Delete Blank or Empty Columns Use Excel VBA Less Headers

bepedicino

Board Regular
Joined
Sep 29, 2014
Messages
73
I have the following VBA code that will delete columns that are entirely blank. I would like to modify the code so that if a range below the first three rows (headers) is blank, then the entire column will be deleted. Can anyone assist please?

Code:
Sub DeleteBlankColumns()'Step1:  Declare your variables.
    Dim MyRange As Range
    Dim iCounter As Long
'Step 2:  Define the target Range.
    Set MyRange = ActiveSheet.UsedRange
    
'Step 3:  Start reverse looping through the range.
    For iCounter = MyRange.Columns.Count To 1 Step -1
    
'Step 4: If entire column is empty then delete it.
       If Application.CountA(Columns(iCounter).EntireColumn) = 0 Then
       Columns(iCounter).Delete
       End If
'Step 5: Increment the counter down
    Next iCounter

End Sub

 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
How about
Code:
Sub DeleteBlankColumns() 'Step1:  Declare your variables.
    Dim MyRange As Range
    Dim iCounter As Long
'Step 2:  Define the target Range.
    Set MyRange = ActiveSheet.UsedRange
    
'Step 3:  Start reverse looping through the range.
    For iCounter = MyRange.Columns.Count To 1 Step -1
    
'Step 4: If entire column is empty then delete it.
      If Application.CountA(Intersect(MyRange.Offset(3), Columns(iCounter))) = 0 Then
       Columns(iCounter).Delete
       End If
'Step 5: Increment the counter down
    Next iCounter

End Sub
 
Last edited:
Upvote 0
Unfortunately it did not work. To further illustrate columns 2,4,6 and 8 should be completed deleted in the example below.

When I tried the code that you provided nothing happened; when I switch the offset to 4 all columns get deleted.

______|Col 1___|Col 2___|Col 3____|Col 4___|Col 5___|Col 6_____|Col 7___|Col 8___|
Row 1 |Header|
Row 2 |Header|
Row 3 |Header|_|Header|_|Header|_|Header|_|Header|_|Header|__|Header__|blank__|
Row 4 |Data|___|blank|__|Data|____|blank|__|Data|___|blank____|Data____|blank___|
Row 5 |Data|___|blank|__|Data|____|blank|__|Data|___|blank____|Data____|blank___|
Row 6 |Data|___|blank|__|Data|____|blank|__|Data|___|blank____|blank___|blank___|
Row 7 |Data|___|blank|__|Data|____|blank|__|Data|___|blank____|Data____|blank___|
Row 8 |Data|___|blank|__|Data|____|blank|__|Data|___|blank____|blank____|blank___|

How about
Code:
Sub DeleteBlankColumns() 'Step1:  Declare your variables.
    Dim MyRange As Range
    Dim iCounter As Long
'Step 2:  Define the target Range.
    Set MyRange = ActiveSheet.UsedRange
    
'Step 3:  Start reverse looping through the range.
    For iCounter = MyRange.Columns.Count To 1 Step -1
    
'Step 4: If entire column is empty then delete it.
      If Application.CountA(Intersect(MyRange.Offset(3), Columns(iCounter))) = 0 Then
       Columns(iCounter).Delete
       End If
'Step 5: Increment the counter down
    Next iCounter

End Sub
 
Upvote 0
Do you have any merged cells?
 
Upvote 0
Try stepping through the code using F8.
If you have the VBE open on one half of the screen, you can see what is going-on on the sheet.
does each column get deleted individually?
 
Upvote 0
Correction, your VBA works like a charm! Thank you!

I've realized that the blank cells are not truly blank, they contained formula, therefore they are not being deleted. I must retain the formatting of the cells so I am not sure what the next step would be here.

Yes, in cell C1:D1 and C2:D2; however, columns will only need to be deleted in the column E through O range.

Thank you for all your support.
 
Upvote 0
Are the formulae returning numbers, text or both?
 
Upvote 0
Problem Solved, thank you Fluff !!!!

I needed to add some additional VBA to clear out the blank cell and all is good.

Again thanks to you, and the Mr. Excel community for the continued support.

Are the formulae returning numbers, text or both?
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,172
Messages
6,129,291
Members
449,498
Latest member
Lee_ray

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top