You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Apple numbers < > formula

If I had a cell that I wanted a multi possibility answer, how would I code it? Example:


I want info to display in A1, that if B1 is less than 5 display “X”, but if greater than 5 but less than 10- multiply by 2, greater than 10 but less than 20- multiply by 3, if greater than 20 but less than 30- multiply by 4….


any advice?

Posted on Jul 11, 2023 3:49 PM

Reply
Question marked as Top-ranking reply

Posted on Jul 12, 2023 8:53 AM

Something like this?




=IFS(A1<100,0,A1≤200,A1×2%,A1≤300,A1×3%,A1≤400,A1×4%,A1≤500,A1×5%,A1≤600,6%,A1>600,7%)


You didn't say what the rate is for 501 to 600 sells, so I just assumed.


If your region uses , as the decimal separator, be sure to replace the , in the formula with ;


If you are on a tiered commission schedule where you receive 2% on the first 200 sells, 3% on the second 100 sells, etc. then the formula is more complicated. Post if you need that.


SG

4 replies
Question marked as Top-ranking reply

Jul 12, 2023 8:53 AM in response to chadwick37821

Something like this?




=IFS(A1<100,0,A1≤200,A1×2%,A1≤300,A1×3%,A1≤400,A1×4%,A1≤500,A1×5%,A1≤600,6%,A1>600,7%)


You didn't say what the rate is for 501 to 600 sells, so I just assumed.


If your region uses , as the decimal separator, be sure to replace the , in the formula with ;


If you are on a tiered commission schedule where you receive 2% on the first 200 sells, 3% on the second 100 sells, etc. then the formula is more complicated. Post if you need that.


SG

Jul 12, 2023 8:23 AM in response to 6x6

I appreciate your response, but there’s a step in there missing and that’s the part I’m having trouble understanding. I will tell you the real world problem VS an example. I’m trying to auto calculate

my bonus. A1 is the sum of all sells. In B1 I need it to display where I’m at according to my bonus chart. Chart looks like this:

0-99 sells don’t qualify for bonus

100-200 sells A1 multiplied by 2%

201-300 sells A1 multiplied by 3%

301-400 sells A1 multiplied by 4%

401-500 sells A1 multiplied by 5%

601 and more A1 multiplied by 6 %


hope this helps clarify, I’m pulling my hair out on this issue

Apple numbers < > formula

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.