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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
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,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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