VBA code for Cell Value that Includes IfError

nau2002

Board Regular
Joined
Dec 19, 2016
Messages
97
Hello, I have a VBA change event that inserts a v-lookup as follows:

cell.Value = "=VLOOKUP(""C""&(TEXT(RC[-1],""0"")),'Summary by Project- exBR'!R4C3:R200C4,2,FALSE)"

I need the formula to be modified to include an iferror function (or something similar), so that if the value is #NA , it will return a blank result, "".

Any thoughts?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
"=IFERROR(VLOOKUP(""C""&(TEXT(RC[-1],""0"")),'Summary by Project- exBR'!R4C3:R200C4,2,FALSE),"")"
 
Upvote 0
Thanks for the suggestion. I'm receiving an error when I use that code: Run-Time Error 1004 Application-defined or object-defined error.
When I try debug, it highlights the line with that formula as the error. Any other thoughts?
 
Upvote 0
Try the double/double quote, as shown in red

"=IFERROR(VLOOKUP(""C""&(TEXT(RC[-1],""0"")),'Summary by Project- exBR'!R4C3:R200C4,2,FALSE),"""")"

Howard
 
Upvote 0

Forum statistics

Threads
1,215,491
Messages
6,125,109
Members
449,205
Latest member
ralemanygarcia

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