IF Statement with Nested VLookup Formula

pattih

New Member
Joined
Feb 26, 2013
Messages
44
I need help with a formula where if column F in the estimate report sheet contains "Hughes" then lookup B24 and return the result in Column 12 of the Estimate Report. Excel accepts the formula, but I am getting a #N/A error message.

=IF(EstimateReport!$F$3:$F$1852="HUGHES",VLOOKUP(EstimateReport!B24,EstimateReport!$A$3:$M$1852,12,0))

Thank you.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Try,

=IF(ISNUMBER(MATCH("HUGHES",EstimateReport!$F$3:$F$1852,0)),VLOOKUP(EstimateReport!B24,EstimateReport!$A$3:$M$1852,12,0,"FALSE"))
 
Upvote 0
Thank you for helping me with this formula.

I get an error message that says I have entered too few arguments for this function and then in the cell "FALSE" is highlighted. If I take "FALSE" out of the formula, I get the #N/A error again.
 
Upvote 0
Sorry, I was no where near a spreadsheet when I did it.

You will get a circular reference anyway

=IF(ISNUMBER(MATCH("HUGHES",EstimateReport!$F$3:$F$1852,0)),VLOOKUP(EstimateReport!B24,EstimateReport!$A$3:$M$1852,12,0),"FALSE")
 
Upvote 0

Forum statistics

Threads
1,203,323
Messages
6,054,727
Members
444,747
Latest member
Jaborsum

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