Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm working on a sales commissions template. The bonus structure is as
follows: over 101% of budget but below 105% of budget, the rep receives a bonus of 1%. If the rep exceeds their budget by 105% and over, the rep receives a 2% bonus. I've worked out the over 105% budget bonus structure but I'm having troubles working out the "over 101% but below 105% budget" calculation. Any help is appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(AND(A11.01,A1<1.05),0.01,0.02)*A1
"Susy" wrote: I'm working on a sales commissions template. The bonus structure is as follows: over 101% of budget but below 105% of budget, the rep receives a bonus of 1%. If the rep exceeds their budget by 105% and over, the rep receives a 2% bonus. I've worked out the over 105% budget bonus structure but I'm having troubles working out the "over 101% but below 105% budget" calculation. Any help is appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Awesome! Thank you so much!!!
:-) "Teethless mama" wrote: =IF(AND(A11.01,A1<1.05),0.01,0.02)*A1 "Susy" wrote: I'm working on a sales commissions template. The bonus structure is as follows: over 101% of budget but below 105% of budget, the rep receives a bonus of 1%. If the rep exceeds their budget by 105% and over, the rep receives a 2% bonus. I've worked out the over 105% budget bonus structure but I'm having troubles working out the "over 101% but below 105% budget" calculation. Any help is appreciated. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Okay...i forgot to include an important variable. Below 101%, the rep is not
entitled to any bonus. If i use that formula when the rep is at 80% of budget, a bonus is calculated... So here's the bonus structu Below 101% = no bonus Between 101% and 105% = 1% Above 105% = 2%. Thanks! "Susy" wrote: Awesome! Thank you so much!!! :-) "Teethless mama" wrote: =IF(AND(A11.01,A1<1.05),0.01,0.02)*A1 "Susy" wrote: I'm working on a sales commissions template. The bonus structure is as follows: over 101% of budget but below 105% of budget, the rep receives a bonus of 1%. If the rep exceeds their budget by 105% and over, the rep receives a 2% bonus. I've worked out the over 105% budget bonus structure but I'm having troubles working out the "over 101% but below 105% budget" calculation. Any help is appreciated. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(A1<1.01,0,IF(A1<1.05,0.01,0.02))*A1
-- David Biddulph "Susy" wrote in message ... Okay...i forgot to include an important variable. Below 101%, the rep is not entitled to any bonus. If i use that formula when the rep is at 80% of budget, a bonus is calculated... So here's the bonus structu Below 101% = no bonus Between 101% and 105% = 1% Above 105% = 2%. Thanks! "Susy" wrote: Awesome! Thank you so much!!! :-) "Teethless mama" wrote: =IF(AND(A11.01,A1<1.05),0.01,0.02)*A1 "Susy" wrote: I'm working on a sales commissions template. The bonus structure is as follows: over 101% of budget but below 105% of budget, the rep receives a bonus of 1%. If the rep exceeds their budget by 105% and over, the rep receives a 2% bonus. I've worked out the over 105% budget bonus structure but I'm having troubles working out the "over 101% but below 105% budget" calculation. Any help is appreciated. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Excellent. Thanks so much!
"David Biddulph" wrote: =IF(A1<1.01,0,IF(A1<1.05,0.01,0.02))*A1 -- David Biddulph "Susy" wrote in message ... Okay...i forgot to include an important variable. Below 101%, the rep is not entitled to any bonus. If i use that formula when the rep is at 80% of budget, a bonus is calculated... So here's the bonus structu Below 101% = no bonus Between 101% and 105% = 1% Above 105% = 2%. Thanks! "Susy" wrote: Awesome! Thank you so much!!! :-) "Teethless mama" wrote: =IF(AND(A11.01,A1<1.05),0.01,0.02)*A1 "Susy" wrote: I'm working on a sales commissions template. The bonus structure is as follows: over 101% of budget but below 105% of budget, the rep receives a bonus of 1%. If the rep exceeds their budget by 105% and over, the rep receives a 2% bonus. I've worked out the over 105% budget bonus structure but I'm having troubles working out the "over 101% but below 105% budget" calculation. Any help is appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change column letters to correct ones in many formulas automatically? | Links and Linking in Excel | |||
how can i get formulas in excel to copy and paste? | Excel Worksheet Functions | |||
How to make Excel run limited number of formulas on a given worksh | Excel Discussion (Misc queries) | |||
Way to make Excel only run certain formulas on a worksheet? | Excel Discussion (Misc queries) | |||
calculating formulas for all workbooks in a folder | Excel Worksheet Functions |