Hi, I have the following formula:
=IF(B3<=100000,0,IF(AND(B3>100000,B3<=250000),E3*0.06%, IF(AND(B3>250000,B3<=1000000), E3*0.1%, IF(AND(B3>1000000,B3<=5000000), E3*0.15%, IF(B3>5000000, E3*0.19%)))))
I want to limit the value it returns to be no greater than 15000, how do I do that.
Thanks