Deleting Columns that sum to less than 1000

bgold04

New Member
Joined
Oct 6, 2021
Messages
1
Office Version
  1. 365
Platform
  1. MacOS
I have tried the following and get no syntax errors:

VBA Code:
Sub Delete1000()

    Dim lngCol As Long
    Dim ws As Worksheet
  
    Set ws = ActiveSheet
  
    With ws
        For lngCol = .Columns("T").Column To .Columns("CYL").Column Step -1
            If WorksheetFunction.Sum(.Columns(lngCol)) <= 1000 Then
                .Columns(lngCol).EntireColumn.Delete
            End If
        Next lngCol
    End With
End Sub

It just simply doesn't work!

Suggestions?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
@bgold04 welcome to the Forum
It should be:
VBA Code:
For lngCol = .Columns("CYL").Column To .Columns("T").Column Step -1
 
Upvote 0

Forum statistics

Threads
1,216,774
Messages
6,132,649
Members
449,740
Latest member
Stevejhonsy

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