Crazy type mismatch error

pjalan

New Member
Joined
Dec 3, 2014
Messages
4
I am trying to find a row with a string value (for example "Safe") and want to delete all the rows leading from there. However, I am getting a type mismatch error in the last line (Rows("b:500").EntireRow.Delete). Can't seem to figure out whats wrong with my code!!!!!

sheetname = ActiveSheet.Name
Dim r As Range
Set r = ActiveSheet.Cells.Find("Safe")
Dim a() As String
a = Split(r.Address, "$")
Dim b As Integer
b = CInt(a(2))
Rows("b:500").EntireRow.Delete

Help please :(

Thanks.
 
Try
Code:
Range(Cells(b,1), cells(500,1).EntireRow.Delete
or
Code:
Range(b & ":500").EntireRow.Delete

or forget about the variables a and b and use

Code:
Range(r , cells(500,1).EntireRow.Delete
 
Upvote 0

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