Nested If's not working

Ch1ll1

New Member
Joined
Dec 5, 2014
Messages
8
Hi All

trying to get this formula to work but it is just not playing ball

=IF(OR(R24="Internal"),IF(Y24<1,"N/A",IF(Y24<$U$3,"Too Low",IF(Y24>$W$3,"Too High",IF(AND(Y24>$U$3,Y24<$W$3),"OK",IF(OR(R24="External"),IF(Y24<1,"N/A",IF(Y24<$U$8,"To Low",IF(Y24>$W$8,"To High",IF(AND(Y24>$U$8,Y24<$W$8),"OKA",""))))))))))

The formula is looking for two things within column R - now depending on what it finds it will calculate Too Low, Too High, OK based on the values in a separate table ($U$3, $W$3 for internal and $U$8, $W$8 for external)

The formula works fine for internal but as soon as it see's external it give a "False"

Any ideas ??

Thanks all
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
The formula works fine for internal but as soon as it see's external it give a "False"

Any ideas ??

Hi, it's not easy to debug, long non-working formula - but the nub of the problem is you effectively say IF R4=Internal then do all the rest, i.e. you never get into the else part of that first IF().

Without digging too deep, is this any better:

Code:
=IF(R24="Internal",IF(Y24<1,"N/A",IF(Y24<$U$3,"Too Low",IF(Y24>$W$3,"Too High",IF(AND(Y24>$U$3,Y24<$W$3),"OK")))),IF(R24="External",IF(Y24<1,"N/A",IF(Y24<$U$8,"To Low",IF(Y24>$W$8,"To High",IF(AND(Y24>$U$8,Y24<$W$8),"OKA",""))))))
 
Upvote 0
I havent looked at the other parts but maybe like this:

=IF(Y24<1,"N/A",IF(R24="Internal",IF(Y24<$U$3,"Too Low",IF(Y24>$W$3,"Too High",IF(AND(Y24>$U$3,Y24<$W$3),"OK",""))),IF(R24="External",IF(Y24<$U$8,"Too Low",IF(Y24>$W$8,"Too High",IF(AND(Y24>$U$8,Y24<$W$8),"OKA",""))))))
 
Upvote 0
Possibly too many IF statements.:confused:

When I separate the formula into two different cells and use

=IF(R24="Internal",IF(Y24<1,"N/A",IF(Y24<$U$3,"Too Low",IF(Y24>$W$3,"Too High",IF(AND(Y24>$U$3,Y24<$W$3),"OK")))))

and

=IF(R24="External",IF(Y24<1,"N/A",IF(Y24<$U$8,"To Low",IF(Y24>$W$8,"To High",IF(AND(Y24>$U$8,Y24<$W$8),"OKA","")))))

then it works fine.

If Y24<1 is always the same for internal or external then you could get rid of that easily.

Try this:

=IF(AND(R24="Internal",Y24>1),IF(Y24<$U$3,"Too Low",IF(Y24>$W$3,"Too High",IF(AND(Y24>$U$3,Y24<$W$3,Y24>1),"OK"))),IF(AND(R24="External",Y24>1),IF(Y24<$U$8,"To Low",IF(Y24>$W$8,"To High",IF(AND(Y24>$U$8,Y24<$W$8),"OKA"))),"N/A"))
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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