Forum Discussion
excelwnb
Dec 13, 2019Copper Contributor
Excel formula
multiple IF or possible and/or functions. Trying to calculate if C8 is 0,0, if C8 is between 11-20 then C8*50, if C8 is > 20 then C8*100 plus the 500 from C8*10. end result is a $50 bonus per file on...
excelwnb
Dec 14, 2019Copper Contributor
PReagan this worked perfectly thank you.
Can I ask if you have insight into adding a minimum $1,595 to this formula? =if(C15="yes",C20*30%,if(C16="yes",C20*20%,0)). the question being if C20*30 is not at least $1,595 then the min calculation would be $1,595.
PReagan
Dec 14, 2019Bronze Contributor
My pleasure!
Assuming a minimum of 1595 would be applied to only C20*30% and not C20*20% then that could be:
=IF(C15=“yes”, IF(C20*30%<1595, 1595, C20*30%), IF(C16=“yes”, C20*20%, 0))
This formula was created on my phone so I am not able to test it. Please let me know if it works for you.
Assuming a minimum of 1595 would be applied to only C20*30% and not C20*20% then that could be:
=IF(C15=“yes”, IF(C20*30%<1595, 1595, C20*30%), IF(C16=“yes”, C20*20%, 0))
This formula was created on my phone so I am not able to test it. Please let me know if it works for you.