Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to set up a commission plan that drives the following payouts:
Achieve Payout $0-$4999 5% of total achieved $5000-$9999 8% of total achieved $10,000+ 10% of total achieved Which is the best Excel formula to use? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Arrange the payout table as follows - achievement levels in column A
listing the lower limit of the range (e.g. $0, $5,000 and $10,000) and the % in column B (5%, 8% and 10%). =LOOKUP(total achieved,A1:A3,B1:B3) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Enter the following values in some range, say A1:B3
0 0.05 5000 0.08 10000 0.10 Then, use a VLOOKUP =VLOOKUP(amount,A1:B3,2,TRUE) where amount is the value to be tested. The amount value in the first column (0, 5000, 10000) must be ascending order. The values in the second column need not be in any particular order. Cordially, Chip Pearson Microsoft Most Valuable Professional Excel Product Group, 1998 - 2009 Pearson Software Consulting, LLC www.cpearson.com (email on web site) On Mon, 19 Jan 2009 09:44:01 -0800, Newsgal wrote: I need to set up a commission plan that drives the following payouts: Achieve Payout $0-$4999 5% of total achieved $5000-$9999 8% of total achieved $10,000+ 10% of total achieved Which is the best Excel formula to use? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CREATING FORMULA IN ONE WORKSHEET BASED ON MULTIPLE CRITERIA IN AN | Excel Worksheet Functions | |||
Adding based on Multiple Criteria? | Excel Discussion (Misc queries) | |||
how can I have a formula result based on multiple criteria/columns | New Users to Excel | |||
sum based on multiple criteria | Excel Worksheet Functions | |||
Multiple Sum, based on criteria | Excel Worksheet Functions |