find and delete again

rhino4eva

Active Member
Joined
Apr 1, 2009
Messages
260
Office Version
  1. 2010
Platform
  1. Windows
Sheets("Sheet1").UsedRange
Dim Rng1 As Range
For Each Rng1 In Range("Z:Z").SpecialCells(xlBlanks).Areas
Intersect(Rng1.EntireRow, Range("A:BT")).Delete shift:=xlUp
Next Rng1

ok so I have used this code many times but need to modify it a little

.SpecialCells(xlBlanks). gets rid of blanks

I would like to repeat the exercise but I would like to delete the entirerow if it finds the word "Vitamin D" and "PSA"
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
How about
Code:
Sub rhino4eva()
   Dim Rng As Range
   
   With Range("Z:Z")
      .Replace "Vitamin D", "", xlWhole, , False, , False, False
      .Replace "PSA", "", xlWhole, , False, , False, False
      For Each Rng In .SpecialCells(xlBlanks).Areas
         Intersect(Rng.EntireRow, Range("A:BT")).Delete xlShiftUp
      Next Rng
   End With
End Sub
 
Upvote 0
that's brill ....it works a treat & I can even expand on it
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,421
Members
448,961
Latest member
nzskater

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