Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have three scenarios. The first is up to the first 50 people that sign up
get a 25% discount, the next 50 get a 15% discount and the third 50 people that sign up get a 10% discount. I have set up a time frame by month and a cumulative row to capture all the people that sign up. As people sign up, I need to know if I have reached my threshholds so I can apply the right discount. I have tried the "If" condition but I am not exactly sure how to apply it on multiple options. Thanks for your help. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am sure there's a better way but it's not come to mind yet. Assuming you
have a row for each person and that row has a cell containing the date and time they signed up, I'd sort the rows by date/time and add a helper column which you add a counter from 1 to whatever. Then you can have a formula for the discount: =IF(counter<50,25%,IF(counter<100,15%,IF(counter<1 50,10%,0))) Regards Trevor "Marcel" wrote in message ... I have three scenarios. The first is up to the first 50 people that sign up get a 25% discount, the next 50 get a 15% discount and the third 50 people that sign up get a 10% discount. I have set up a time frame by month and a cumulative row to capture all the people that sign up. As people sign up, I need to know if I have reached my threshholds so I can apply the right discount. I have tried the "If" condition but I am not exactly sure how to apply it on multiple options. Thanks for your help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If formula: if A1 is greater than B1 and A1 is greater than zero.. | Excel Discussion (Misc queries) | |||
If Formula using Greater than / Less than | Excel Discussion (Misc queries) | |||
Excel less than greater than formula | Excel Discussion (Misc queries) | |||
Formula in Excel to show greater than 50, but less than 250? | Excel Worksheet Functions | |||
How do I set up a greater than but less than formula in excel? | Excel Programming |