Iferror

sburkhar

Active Member
Joined
Oct 4, 2006
Messages
363
What am i doing wrong? I keep getting NAME? as an answer.

IFERROR(VLOOKUP(F12,'[VLOOKUP.xls]0-39999 (2)'!$B:$C,2,FALSE),"")
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
What version of Excel are you using?
 
Upvote 0
Sadly, 2003 does not have support for IFERROR. You can, however, still use the alternative IF(ISERROR( function:

=IF(ISERROR(VLOOKUP(F12,'[VLOOKUP.xls]0-39999 (2)'!$B:$C,2,FALSE)),"",VLOOKUP(F12,'[VLOOKUP.xls]0-39999 (2)'!$B:$C,2,FALSE))
 
Upvote 0
holy crap!!! that's a long function! I'll give it a try. I've been staring at and re-writing the other one for 2 hours now. Really wish i'd written you sooner.
 
Upvote 0
The function isn't as bad as it seems. It first tests to see if your vlookup errors. If it does, then it returns blank, else it returns your vlookup:

To simplify it:

=IF(ISERROR(*your vlookup*),"",*your vlookup*)
 
Upvote 0
thank you. I'll try this. I have another one to write on another tab. You might be hearing from me again in a few. I won't keep trying for 2 hours again.
thanks again!
 
Upvote 0
I'm using the IS(ERROR) formula that you gave me which is working great, but now I'm getting #VALUE in my totals column. The 2 columns containing the IS(ERROR) formula have green smart tags in the corner that are indicating an Unprotected formula, but nothing I do in the smart tag is getting rid of #VALUE.
My totals column has a formula in it that has been working for years and I have not touched this column, so my problem is stemming from the changes I made with the VLOOKUP.
 
Upvote 0
Can you please post that formula? Also, can you please post one of the IF(ISERROR( formulas you are using?
 
Upvote 0
=IF(ISERROR(VLOOKUP('MAT PAGE'!F12,'https://www.ynaconnection.com/sites/dcbu_finpricpriv/Pricing%20Guidlines/[VLOOKUP.xls]0-39999 (2)'!$B$1:$J$65536,9,FALSE)),"",VLOOKUP('MAT PAGE'!F12,'https://www.ynaconnection.com/sites/dcbu_finpricpriv/Pricing%20Guidlines/[VLOOKUP.xls]0-39999 (2)'!$B$1:$J$65536,9,FALSE))


TOTALS FORMULA:
=ROUND((H6+I6+T6+U6)+ROUND((((L6+X6)/60)*INFO!$C$10),4),4)

Is it because my VLOOKUP is being pulled from another document?
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,220
Members
452,895
Latest member
BILLING GUY

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