fernipascual
Board Regular
- Joined
- Sep 3, 2009
- Messages
- 75
Hello all:
This is a program that pays based on product sold. There are two products, A & B and two eligible periods, Month 1 and Month 2. They only get paid one time for each product. Either $5 per product (if sold in Month 1) or $3 (if sold in Month 2). Here are the scenarios:
Month 1 - Sold product A & B = $10. Month 2 – sold product but no payment
Month 1 – Sold product A = $5, no B. Month 2 - Sold product B = $3, (doesn’t matter if sold A)
Month 1 – Sold product B = $5, no A. Month 2 - Sold product A = $3, (doesn’t matter if sold B)
Month 1 – no product sold. Month 2 sold A & B = $6
Month 1 – no product sold. Month 2 sold A = $3, no B = $0
Month 1 – no product sold. Month 2 sold B = $3, no A = $0
Month 1 and Month 2 - Did not sell product at all
<tbody>
</tbody>
Thanks!
This is a program that pays based on product sold. There are two products, A & B and two eligible periods, Month 1 and Month 2. They only get paid one time for each product. Either $5 per product (if sold in Month 1) or $3 (if sold in Month 2). Here are the scenarios:
Month 1 - Sold product A & B = $10. Month 2 – sold product but no payment
Month 1 – Sold product A = $5, no B. Month 2 - Sold product B = $3, (doesn’t matter if sold A)
Month 1 – Sold product B = $5, no A. Month 2 - Sold product A = $3, (doesn’t matter if sold B)
Month 1 – no product sold. Month 2 sold A & B = $6
Month 1 – no product sold. Month 2 sold A = $3, no B = $0
Month 1 – no product sold. Month 2 sold B = $3, no A = $0
Month 1 and Month 2 - Did not sell product at all
row | e | f | g | h | i |
1 | Month 1 | Month 1 | Month 2 | Month 2 | Payment Formula |
2 | Product A | Product B | Product A | Product B | |
3 | 4 | 2 | 5 | 8 | $10 |
4 | 5 | 0 | 5 | 2 | $8 |
5 | 0 | 5 | 2 | 2 | $8 |
6 | 0 | 0 | 3 | 5 | $6 |
7 | 0 | 0 | 3 | 0 | $3 |
8 | 0 | 0 | 0 | 2 | $3 |
9 | 0 | 0 | 0 | 0 | $0 |
<tbody>
</tbody>
Thanks!