Need formula to I have too many nested level
You can simplify it to
=IF(O6=P6,P6*K6/J6,IF(O6<P6,O6*K6/J6,P6*K6/J6+AQ6*K6/J6*1.5))
because in your formula you first test for O6=P6, then you test for O6<P6.
After that the test for O6P6 is pointless, because it must always be true
if you get to that part of the formula, and therefore the whole of the
alternative outcome path from that test is unreachable.
You can simplify it further to
=IF(O6<=P6,O6*K6/J6,P6*K6/J6+AQ6*K6/J6*1.5)
--
David Biddulph
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
|