Project If Function
"sarajmen" wrote:
Spencer101;1605796 Wrote:-
Try this in cell H3 and copy down.
=IF(B3=$L$1,$M$1,IF(B3=$L$2,$M$2,(E3*G3)+$H$2))
[....]
I get a msg
The Formula You Typed Contains An Error
Perhaps you should use semicolons instead of commas for separators. Try:
=IF(B3=$L$1;$M$1;IF(B3=$L$2;$M$2;E3*G3+$H$2))
And since your English description is ambiguous, try the following
alternative if the formula above gives the wrong numerical result:
=IF(B3=$L$1;$M$1;IF(B3=$L$2;$M$2;E3*(G3+$H$2)))
|