Nested IF Statements Returning "FALSE" Value

Brandon39

Board Regular
Joined
Jun 28, 2010
Messages
63
Hey all,
I am using a combination of nested IF statements and VLOOKUPs to get a vlue to appear in a specific cell.

The IF statements check to see if a specific text value displays in a specified cell and then uses a VLOOKUP to match the value to that text if true. If it is false it moves on to check the next specific text value. There are 5 different text values it needs to check.

I have gotten my formula to the point where it can match all the text values appropriately with the VLOOKUPs, however I can't seem to close out the formula should NONE of the text value's be true. When this happens the cell returns a value of "FALSE". I would like to be able to avoid this and have a number value displayed.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi,

Care to post your formula so we can give advice or you may just get a generic response such as "iserror" or "isnumber" :)

Regards,
Ian
 
Upvote 0
Code:
=IF($N$3="Hit",(ROUND(VLOOKUP($C$3,HELMLOOKUP,5,FALSE)*0.6,0)),IF($O$3="Hit",IF(N3="Spirit",ROUND(VLOOKUP($C$3,HELMLOOKUP,4,FALSE)*0.4,0),IF($N$3="Mastery",(ROUND(VLOOKUP($C$3,HELMLOOKUP,8,FALSE)*0.4,0)),IF($N$3="Crit",(ROUND(VLOOKUP($C$3,HELMLOOKUP,6,FALSE)*0.4,0)),IF($N$3="Haste",(ROUND(VLOOKUP($C$3,HELMLOOKUP,7,FALSE)*0.4,0))))))))

The posted formula is functional in its current state, however all I really need at this point is a way to tell it if none of these checks return TRUE for it to display another VLOOKUP value instead of FALSE.
 
Upvote 0

Forum statistics

Threads
1,214,655
Messages
6,120,760
Members
448,991
Latest member
Hanakoro

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