ChristinePratt1
5 years agoQrew Cadet
Need help with formula for tiered pricing
Hello,
I'm trying to build a formula that will calculate the appropriate pricing based on a tier. So for example, I have the following tiered matrix:
<=250,000 transactions * $0.05
<=500,000 transactions * $0.03
<=1,000,000 transactions * $0.01
So I created the following:
If(
<=250000,*0.05,
>250000 and <=500000, *0.03,
>1000000, *0.01)
I feel like this is wrong. Like if the # of transactions is greater than 250000, then it's going to price all the transactions at the 250000 rate, as opposed to just the transactions over the tier limit... How can I fix that?
Thanks!
------------------------------
Christine
------------------------------
I'm trying to build a formula that will calculate the appropriate pricing based on a tier. So for example, I have the following tiered matrix:
<=250,000 transactions * $0.05
<=500,000 transactions * $0.03
<=1,000,000 transactions * $0.01
So I created the following:
If(
<=250000,*0.05,
>250000 and <=500000, *0.03,
>1000000, *0.01)
I feel like this is wrong. Like if the # of transactions is greater than 250000, then it's going to price all the transactions at the 250000 rate, as opposed to just the transactions over the tier limit... How can I fix that?
Thanks!
------------------------------
Christine
------------------------------