Using a nested IFERROR formula

janema

Board Regular
Joined
Nov 28, 2022
Messages
117
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2011
  5. 2010
Platform
  1. Windows
  2. Mobile
I need to add a formula to this to remove ERRORS and bring them back as a BLANK. I tried putting it to the end of this formula, but it didn't work and gave me an error. :(
Not sure where to add in the formula to make it work. I always get stuck on how to order them and errors. Sigh.


=IF(Q333="","",IF(AE333="",VLOOKUP(Q333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),VLOOKUP(AE333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE)))

1674857097374.png
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Please try this

=IFERROR(IF(Q333="","",IF(AE333="",VLOOKUP(Q333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),VLOOKUP(AE333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE))),"")
 
Upvote 0
Your first IF asks if Q333 is blank, and when blank it sends it to the 2nd part of formula And that part asks you to read Q333 to do a look up.... but it must be blank or it would not be in that section of the formula.
 
Upvote 0
TRY THIS:

= IFERROR(
IF(Q333<>"",
VLOOKUP(Q333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),
IF(AE333 <> "",
VLOOKUP(AE333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE)
"")),
"")
 
Upvote 0
Another option
Excel Formula:
=IF(Q333="","",IF(AE333="",IFNA(VLOOKUP(Q333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),""),IFNA(VLOOKUP(AE333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),"")))
 
Upvote 1
Solution
Thank you so much. I'm going to try these tonight!
 
Upvote 0
Another option
Excel Formula:
=IF(Q333="","",IF(AE333="",IFNA(VLOOKUP(Q333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),""),IFNA(VLOOKUP(AE333,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE),"")))

This worked!!! You ALWAYS save me! Thanks so much. :love:
 
Upvote 0
Glad we could help & thanks fro the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,847
Members
449,194
Latest member
HellScout

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