S
SSJ
Hello,
I have to calculate commission on sales tax collected based on the following criteria:
1) If sales tax collected is $11.00 or less, then the commission = to the sales tax collected
2) If sales tax collected is $11.01 - $333.33, then the commission= $11.00
3) If sales tax collected is more than $333.33, then commission = 3.3% of the sales tax collected, with a maximum amount = $99.00
My attempt was as follows, which work, however, I want to find out a better way, if any, to do this:
=IF(A2<=11,A2,IF(A2<=333.33,11,IF(A2<3000,A2*0.033,99)))
Thanks
SJ
I have to calculate commission on sales tax collected based on the following criteria:
1) If sales tax collected is $11.00 or less, then the commission = to the sales tax collected
2) If sales tax collected is $11.01 - $333.33, then the commission= $11.00
3) If sales tax collected is more than $333.33, then commission = 3.3% of the sales tax collected, with a maximum amount = $99.00
My attempt was as follows, which work, however, I want to find out a better way, if any, to do this:
=IF(A2<=11,A2,IF(A2<=333.33,11,IF(A2<3000,A2*0.033,99)))
Thanks
SJ