VLOOKUP Formula HELP

Status
Not open for further replies.

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 am trying to squeeze in another two formulas into this one, but keep getting an error. I need to add a formula to bring back BLANK if it's an error, and also to bring back a BLANK if the lookup (Q426) field is blank. It keeps telling me too many arguments. The formula currently is:

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


1674853429837.png


Please help.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try
=IFS(AD426="","",ISNA(VLOOKUP(AD426,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE)),"",TRUE,Q426="","")
 
Upvote 0
Try
=IFS(AD426="","",ISNA(VLOOKUP(AD426,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE)),"",TRUE,Q426="","")

That didn't work. It returned an error that there were too many arguments.
 
Upvote 0
=IFS(AD426="","",ISNA(VLOOKUP(AD426,'Radford (All US)'!$L$8:$HZ$9074,5,FALSE)),"",Q426="","")

That may fix it
 
Upvote 0
That came back as an error too :(

I tried this formula:

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

This removed the errors when Q4 is blank, but I need it to return BLANK if there are errors too. This is returning too many arguments too.
 
Upvote 0
I need to add a formula to this to remove ERRORS as BLANK. I tried putting it to the end of this formula, but it didn't work and gave me an error. :(

=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)))


1674856413598.png
 
Upvote 0
That came back as an error too :(

I tried this formula:

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

This removed the errors when Q4 is blank, but I need it to return BLANK if there are errors too. This is returning too many arguments too.
The problem is that the last VLOOKUP is the FALSE for the second IF. Try building your if step by step. Start with the first condition and then add the next condition etc,
 
Upvote 0
Solution
The problem is that the last VLOOKUP is the FALSE for the second IF. Try building your if step by step. Start with the first condition and then add the next condition etc,

I accidentally double posted this. I'll close this one as resolved. Oops.
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,214,918
Messages
6,122,252
Members
449,075
Latest member
staticfluids

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