Forum Discussion
nickcsy
Jun 29, 2022Copper Contributor
Excel Formula for price by tier with an interval
Hi all I'm hoping for an excel formula that can calculate the following tiers/sums based on the value in just one cell (A1) to show a result in only one other cell. Where A1 is <25,000 price to pay...
- Jun 29, 2022
Sorry, my bad. See the attached version.
HansVogelaar
Jun 29, 2022MVP
You can use that, then add the second part of the formula that I posted:
=IF(A1<25000,50,IF(A1<50000,80,IF(A1<100000,150,IF(A1<200000,300,IF(A1<300000,600,IF(A1<400000,1500,IF(A1<500000,2000)))))))+QUOTIENT(MAX(A1-5000000,0),50000)*100
nickcsy
Jun 29, 2022Copper Contributor
OK cool.
Just gave it a test. I'm afraid when A1 is 500,000 or above, I get only get "-" value unfortunately.
Will keep trying to tweak it in the meantime.
Thanks again.
Nick
- HansVogelaarJun 29, 2022MVP
Sorry, my bad. See the attached version.