Code not starting onthe correct row

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,341
Office Version
  1. 365
Platform
  1. Windows
I need this to delete every row where there is not a "B" in column 9 (Column i) Starting in Row 5 down

Code:
Sub DeleteIfNotB()
'Delete Rows that dont have a B in the Type column

Dim LR As Long, j As Long
LR = Range("C" & Rows.Count).End(xlUp).Row
For j = LR To 1 Step -1
    If Range("i" & j).Value <> "B" Then Rows(j).Delete
Next j


ActiveSheet.Name = "PBOM"

End Sub
 
Last edited:

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
The code loops through the rows backwards, starting at the last row. You are telling it stop at row 1 instead of row 5.
Change it like this:
Code:
For j = LR To [COLOR=#ff0000][B]5[/B][/COLOR] Step -1
 
Upvote 0
I would have sworn I tired that already. That worked. Thanks Joe
 
Upvote 0

Forum statistics

Threads
1,214,801
Messages
6,121,644
Members
449,045
Latest member
Marcus05

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