Delete Blank Columns from a specified Range

Jasvindra

New Member
Joined
Jul 31, 2018
Messages
38
Hi

I am using the below code to delete blank columns in a particular range of Columns but code is not working. Not even showing any Error

Sub DeleteBlankColumns()


Dim MR As Range
Dim iCounter As Long



Set MR = Range("V1:AI709")



For iCounter = MR.Columns.Count To 1 Step -1



If Application.CountA(Columns(iCounter).EntireColumn) = 1 Then
Columns(iCounter).Delete
End If


Next iCounter
End Sub
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
If you only want to check cols V:AI try
Code:
Sub DeleteBlankColumns()

   Dim iCounter As Long

   For iCounter = 35 To 22 Step -1
      If Application.CountA(Columns(iCounter).EntireColumn) = 1 Then
         Columns(iCounter).delete
      End If
   Next iCounter
End Sub
 
Upvote 0
Or

Code:
Sub DeleteBlankColumns()
    Dim MR As Range
    Dim iCounter As Long
    
    Set MR = Range("V1:AI709")
    For iCounter = MR.Columns.Count To 1 Step -1
        If Application.CountA([COLOR=#ff0000]MR[/COLOR].Columns(iCounter).EntireColumn) = 1 Then
            [COLOR=#ff0000]MR[/COLOR].Columns(iCounter).Delete
        End If
    Next iCounter
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,717
Messages
6,126,428
Members
449,314
Latest member
MrSabo83

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