To use more than one IF formula

Copper Contributor

Good day to all

 

I want to use more than one IF in formula to calculate commission amount to be given from the profit.My formula is =IF(C4>20%*C21;3%*C4;IF(C4>40%*C21;5%*C4;"No Bonus")) All the time only the first logical test is being made by excel the second logical test after from second IF is being ignored.

 

C21 is total cost and C4 is the profit. What i want to make is to give different commission per different profit level. Can someone help ?  

5 Replies

@Halikarnas76 

You should try it like this..

 

=IF(C4>40%*C21,5%*C4,IF(C4>20%*C21,3%*C4,"No Bonus"))

Thanks for quick help@Subodh_Tiwari_sktneer 

 

But i already tried to use comma instead of semicolon. Here is the error message in attached

 

 

@Halikarnas76 

I forgot to replace the comma with semicolon in the proposed formula.

Please try it like this...

 

=IF(C4>40%*C21;5%*C4;IF(C4>20%*C21;3%*C4;"No Bonus"))

 

If that answers your original question, please take a minute to accept this post as an Answer to mark your question as Solved.

@Subodh_Tiwari_sktneer 

 

OMG I found the mistake. I was trying to calculate only percentage. So i changed the formula as to =IF(C4>1.4*C21;5%*C4;IF(C4>1.2*C21;3%*C4;"No Bonus")) and it`s working perfect. Thanks for your help my friend. 

@Halikarnas76 

You're welcome!