VBA - Deleting Entire Row Based on a Condition

MJaspering

New Member
Joined
Oct 2, 2023
Messages
8
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hey All,

I am attempting to delete an entire row based on a single cell value and have run into some trouble getting it to work. I have done some testing and the (ActiveCell.Row) piece is generating the correct Row Number, but the Row is not being deleted. Any thoughts?

Thanks!

VBA Code:
Do Until IsEmpty(ActiveCell)
        If ActiveCell.Value = "TOTAL" Then
            Rows(ActiveCell.Row).EntireRow.Delete
        End If
        ActiveCell.Offset(1, 0).Select
    Loop
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try this:
VBA Code:
    Do Until IsEmpty(ActiveCell)
        If ActiveCell.Value = "TOTAL" Then
            ActiveCell.EntireRow.Delete
        Else
            ActiveCell.Offset(1).Select
        End If
    Loop
 
Upvote 0
If deleting, work from the bottom up.
Code:
Dim i As Long
For i = Cells(Rows.Count, 1).End(xlUp).Row To 2 Step - 1
If Cells(i, 1).Value = "Total" Then Cells(i, 1).EntireRow.Delete
Next i

The 1 (one) in this part "Rows.Count, 1" is for Column A. A 2 would be for Column B etc etc.
Mind you, there are better ways of doing this as you should avoid looping if you can
 
Upvote 0

Forum statistics

Threads
1,215,208
Messages
6,123,644
Members
449,111
Latest member
ghennedy

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