TheBigCountry
New Member
Thanks in advance for all the help you've given thus far.
I wanted to write a formula that has a couple of parameters.
Each customer can have a value of either 30 or 120. Each value has certain benefits (I won't bore you with the background as to why)
1. If the customer has a value of 30 - they can receive up to 140 points (for a loyalty program) . So if the cumulative total of their orders in the month is 90, they get 90 points. If it's 139, it's 139 points, if it's 141+, they still only get credit of 140.
Would an appropriate fomula be =IF(C3<141;C3;140)
(C3 is the sum of all orders in the month)
2. If the customer has a value of 120 - they can receive up to 140 loyalty points. They can receive 60 bonus loyalty points (200 total), but only if their order value exceeds 240.
Example: order total is 139 - points = 139.
Order total is 141 - points = 140
Order total is 240+ - points = 200
Basically
- Order Total ≤ 140 = Order Total
- 140 ≤ Order Total < 240 = 140 Points
- Order Total ≥ 240 = 200 Points
How would I write a formula for that?
I wanted to write a formula that has a couple of parameters.
Each customer can have a value of either 30 or 120. Each value has certain benefits (I won't bore you with the background as to why)
1. If the customer has a value of 30 - they can receive up to 140 points (for a loyalty program) . So if the cumulative total of their orders in the month is 90, they get 90 points. If it's 139, it's 139 points, if it's 141+, they still only get credit of 140.
Would an appropriate fomula be =IF(C3<141;C3;140)
(C3 is the sum of all orders in the month)
2. If the customer has a value of 120 - they can receive up to 140 loyalty points. They can receive 60 bonus loyalty points (200 total), but only if their order value exceeds 240.
Example: order total is 139 - points = 139.
Order total is 141 - points = 140
Order total is 240+ - points = 200
Basically
- Order Total ≤ 140 = Order Total
- 140 ≤ Order Total < 240 = 140 Points
- Order Total ≥ 240 = 200 Points
How would I write a formula for that?
