Run time error 1004 Ref: ISERROR

Daminc2

New Member
Joined
Feb 13, 2018
Messages
13
I've entered this bit of code into a macro and it's working ok:
Code:
ActiveCell.FormulaR1C1 = "=MID(R[0]C[-2],SEARCH(""Range"",R[0]C[-2])+6,1)"

however, when the cell doesn't have the word Range it returns a 'Value' error.

To overcome this I added an ISERROR function:
Code:
ActiveCell.FormulaR1C1="=ISERROR(MID(R[0]C[-2],SEARCH(""Range"",R[0]C[-2])+6,1),"")"

Which gives me my 1004 problem.

Can anyone explain were my error is please?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Is it IFERROR you want rather than ISERROR?
Code:
ActiveCell.FormulaR1C1 = "=ISERROR(MID(R[0]C[-2],SEARCH(""Range"",R[0]C[-2])+6,1),"""")"
 
Upvote 0
You are right about the IFERROR:
Code:
        ActiveCell.FormulaR1C1 = "=IFERROR(MID(R[0]C[-2],SEARCH(""Range"",R[0]C[-2])+6,1),"")"
and the introduction of the "" worked like a dream:
Code:
ActiveCell.FormulaR1C1 = "=IFERROR(MID(R[0]C[-2],SEARCH(""Range"",R[0]C[-2])+6,1),"""")"
Thanks for a great assist (y)
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

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