Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Mike" wrote:
=IF(O6=P6,P6*K6/J6,IF(O6<P6,O6*K6/J6,IF(O6P6,P6*K6/J6+AQ6*K6/J6*1.5, IF(U6=V6,V6*K6/J6,IF(U6<V6,U6*K6/J6,IF(U6V6,U6*K6/J6+AU6*K6/J6*1.5, IF(aa6=ab6,ab6*K6/J6,IF(aa6<ab6,aa6*K6/J6,IF(aa6ab6,aa6*K6/J6+Ay6*K6/J6*1.5,0)))))) I need this formula but a simplified one can some one please help There is something very wrong with your logic. O6 can only be equal to, less than or greater than P6. So only one of the first 3 conditions will apply, namely: =IF(O6=P6, P6*K6/J6, IF(O6<P6, O6*K6/J6, IF(O6P6, P6*K6/J6+AQ6*K6/J6*1.5, "never happens!"))) Is that what you really want? I doubt it. But if it is, that can be simplified as follows: =(MIN(O6,P6) + (O6P6)*AQ6*1.5)*K6/J6 However, I wonder if you meant AQ6*K6/(J6*1.5) at the end. If so, then: =(MIN(O6,P6)/J6 + (O6P6)*AQ6/(J6*1.5))*K6 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
20 level nested If | Excel Discussion (Misc queries) | |||
3 level nested if has too many arguments ? | Excel Discussion (Misc queries) | |||
3 level nested if please explain | Excel Discussion (Misc queries) | |||
another EXPERT LEVEL FORMULA from me | Excel Discussion (Misc queries) | |||
Limited IF Nested Level functions. | Excel Discussion (Misc queries) |