vba getting error

husayn

New Member
Joined
Dec 8, 2015
Messages
41
[TABLE="width: 1691"]
<colgroup><col></colgroup><tbody>[TR]
[TD] Dim Addr As String[/TD]
[/TR]
[TR]
[TD] Addr = Range("C2", Cells(Rows.Count, "C").End(xlUp)).Address[/TD]
[/TR]
[TR]
[TD] Range(Addr) = Evaluate(Replace("IF(ISNUMBER(SEARCH(""BLR"",@)),""#N/A"",@)", "@", Addr))[/TD]
[/TR]
[TR]
[TD] Range(Addr).SpecialCells(xlConstants, xlErrors).EntireRow.Delete[/TD]
[/TR]
</tbody>[/TABLE]


[TABLE="width: 1691"]
<colgroup><col width="1691"></colgroup><tbody>[TR]
[TD="width: 1691"]Hi I m using this code to delete BLR IN C Column ok it is working but when BLR is not available in C Column its showing error please help me to skip this error if BLR Is not available in C Column then it should get skip should not show error and should go to next coding[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Wrap the code producing the error :

On error Resume Next
....code...
On Error Go To 0
 
Upvote 0
On error Resume Next
Range(Addr).SpecialCells(xlConstants, xlErrors).EntireRow.Delete
On Error Go To 0
 
Upvote 0

Forum statistics

Threads
1,223,785
Messages
6,174,539
Members
452,571
Latest member
MarExcelTips

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