ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   IF Statement useage (https://www.excelbanter.com/excel-discussion-misc-queries/89306-if-statement-useage.html)

BThrasher

IF Statement useage
 
I have the folowing IF statment that works well.

in "P11"
=IF(M11=90,10,IF(M11=100,20,IF(M11=110,30,IF(M11=1 20,40,IF(M11=130,50,IF(M11=140,60,IF(M11=150,70,IF (M11159,80,))))))))

The value in P11 can be from 10 to 80 based on that statment. I have tried
to add in the front of the IF statment "IF(M11=0,0," making it like this
=IF(M11=0,0,IF(M11=90,10,IF(M11=100,20,IF(M11=110, 30,IF(M11=120,40,IF(M11=130,50,IF(M11=140,60,IF(M1 1=150,70,IF(M11159,80,)))))))))
and it always fails with an error. What am I doing wrong?

Bondi

IF Statement useage
 
Hi,

This might help:

http://www.cpearson.com/excel/nested.htm

Regards,
Bondi


Bob Phillips

IF Statement useage
 
=IF(M11159,80,IF(OR(M11<90,MOD(M11,10)<0),0*(M11/10-8)*10))

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

"BThrasher" wrote in message
...
I have the folowing IF statment that works well.

in "P11"

=IF(M11=90,10,IF(M11=100,20,IF(M11=110,30,IF(M11=1 20,40,IF(M11=130,50,IF(M11
=140,60,IF(M11=150,70,IF(M11159,80,))))))))

The value in P11 can be from 10 to 80 based on that statment. I have tried
to add in the front of the IF statment "IF(M11=0,0," making it like this

=IF(M11=0,0,IF(M11=90,10,IF(M11=100,20,IF(M11=110, 30,IF(M11=120,40,IF(M11=13
0,50,IF(M11=140,60,IF(M11=150,70,IF(M11159,80,))) ))))))
and it always fails with an error. What am I doing wrong?




Bernard Liengme

IF Statement useage
 
The problem is that Excel permits up to 7 level of nesting
Generally one use a lookup formula (see Help on VLOOKUP) when an IF cannot
accommodate all the choices
But in your case you could use =IF(M11=0,0,IF(M11159,80,M11-80))
or =IF(M11=0,0,MAX(80,M11-80))
Not clear what you want when M11 is , for example, 145.
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"BThrasher" wrote in message
...
I have the folowing IF statment that works well.

in "P11"
=IF(M11=90,10,IF(M11=100,20,IF(M11=110,30,IF(M11=1 20,40,IF(M11=130,50,IF(M11=140,60,IF(M11=150,70,IF (M11159,80,))))))))

The value in P11 can be from 10 to 80 based on that statment. I have tried
to add in the front of the IF statment "IF(M11=0,0," making it like this
=IF(M11=0,0,IF(M11=90,10,IF(M11=100,20,IF(M11=110, 30,IF(M11=120,40,IF(M11=130,50,IF(M11=140,60,IF(M1 1=150,70,IF(M11159,80,)))))))))
and it always fails with an error. What am I doing wrong?




BThrasher

IF Statement useage
 
Thanks I did not know it was limited to 7 deep.
bob

"Bondi" wrote:

Hi,

This might help:

http://www.cpearson.com/excel/nested.htm

Regards,
Bondi




All times are GMT +1. The time now is 05:40 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com