Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
eed eed is offline
external usenet poster
 
Posts: 20
Default PLEASE HELP! Return a Value Using Multiple Sources

I need to return a value (a $AMOUNT) based on the following information:
TITLE, LEVEL 1 2 3 or 4, and a percentage range.

Ex: If the [TITLE, ie: Store Manager] exceeds their sales plan by a
[PERCENTAGE RANGE, ie: 1-5%], then they receive a certain bonus [$AMOUNT]
based on their [LEVEL].

The static information is currently set up in a chart as follows:

Store Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X
Associate Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X

The info above is in SHEET 1. 'Store Manager' is in A1. Levels 1-4 for store
manager are in B1-E1

The variable/monthly info is on SHEET 1 and contains the info that tells me
who is entitled to receive a bonus, but ultimately I need to return the
$AMOUNT (Bonus Amount column) they should receive based on the chart above.
The TITLE heading is A1, % Over Sales Plan is in A2, etc.

TITLE % OVER SALES PLAN Bonus Level Bonus Amount
Store Manager 5.00% 2
Assistant Mgr 11.00% 4



Help? Thanks!!



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 37
Default PLEASE HELP! Return a Value Using Multiple Sources

Does the level have to do with the percentage?
--
Alex
*Remember to click "yes" if this post helped you. Thank you!



"eed" wrote:

I need to return a value (a $AMOUNT) based on the following information:
TITLE, LEVEL 1 2 3 or 4, and a percentage range.

Ex: If the [TITLE, ie: Store Manager] exceeds their sales plan by a
[PERCENTAGE RANGE, ie: 1-5%], then they receive a certain bonus [$AMOUNT]
based on their [LEVEL].

The static information is currently set up in a chart as follows:

Store Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X
Associate Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X

The info above is in SHEET 1. 'Store Manager' is in A1. Levels 1-4 for store
manager are in B1-E1

The variable/monthly info is on SHEET 1 and contains the info that tells me
who is entitled to receive a bonus, but ultimately I need to return the
$AMOUNT (Bonus Amount column) they should receive based on the chart above.
The TITLE heading is A1, % Over Sales Plan is in A2, etc.

TITLE % OVER SALES PLAN Bonus Level Bonus Amount
Store Manager 5.00% 2
Assistant Mgr 11.00% 4



Help? Thanks!!



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default PLEASE HELP! Return a Value Using Multiple Sources

Your souce table is very poorly set up for what you are trying to do... You
need the table to be set up as more of a paired values table as follows.

Title Level Lower % Upper % Amount
Store Manager 1 5% 7% xx
Store Manager 1 7% 9% xx
Store Manager 1 9% 11% xx
Store Manager 1 11% 100% xx
Store Manager 2 5% 7% xx
Store Manager 2 7% 9% xx
Store Manager 2 9% 11% xx
Store Manager 2 11% 100% xx
Store Manager 3 5% 7% xx
Store Manager 3 7% 9% xx
Store Manager 3 9% 11% xx
Store Manager 3 11% 100% xx
Store Manager 4 5% 7% xx
Store Manager 4 7% 9% xx
Store Manager 4 9% 11% xx
Store Manager 4 11% 100% xx
Assistant Manager 1 5% 7% xx
Assistant Manager 1 7% 9% xx
Assistant Manager 1 9% 11% xx
Assistant Manager 1 11% 100% xx
Assistant Manager 2 5% 7% xx
Assistant Manager 2 7% 9% xx
Assistant Manager 2 9% 11% xx
Assistant Manager 2 11% 100% xx

At that point using a simple SumProduct Formula you can get your amounts...
In it's current format you will have a LOT of problems...
--
HTH...

Jim Thomlinson


"eed" wrote:

I need to return a value (a $AMOUNT) based on the following information:
TITLE, LEVEL 1 2 3 or 4, and a percentage range.

Ex: If the [TITLE, ie: Store Manager] exceeds their sales plan by a
[PERCENTAGE RANGE, ie: 1-5%], then they receive a certain bonus [$AMOUNT]
based on their [LEVEL].

The static information is currently set up in a chart as follows:

Store Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X
Associate Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X

The info above is in SHEET 1. 'Store Manager' is in A1. Levels 1-4 for store
manager are in B1-E1

The variable/monthly info is on SHEET 1 and contains the info that tells me
who is entitled to receive a bonus, but ultimately I need to return the
$AMOUNT (Bonus Amount column) they should receive based on the chart above.
The TITLE heading is A1, % Over Sales Plan is in A2, etc.

TITLE % OVER SALES PLAN Bonus Level Bonus Amount
Store Manager 5.00% 2
Assistant Mgr 11.00% 4



Help? Thanks!!



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 37
Default PLEASE HELP! Return a Value Using Multiple Sources

Would you use a macro to do this? If so, then let me know.
--
Alex
*Remember to click "yes" if this post helped you. Thank you!



"eed" wrote:

I need to return a value (a $AMOUNT) based on the following information:
TITLE, LEVEL 1 2 3 or 4, and a percentage range.

Ex: If the [TITLE, ie: Store Manager] exceeds their sales plan by a
[PERCENTAGE RANGE, ie: 1-5%], then they receive a certain bonus [$AMOUNT]
based on their [LEVEL].

The static information is currently set up in a chart as follows:

Store Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X
Associate Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X

The info above is in SHEET 1. 'Store Manager' is in A1. Levels 1-4 for store
manager are in B1-E1

The variable/monthly info is on SHEET 1 and contains the info that tells me
who is entitled to receive a bonus, but ultimately I need to return the
$AMOUNT (Bonus Amount column) they should receive based on the chart above.
The TITLE heading is A1, % Over Sales Plan is in A2, etc.

TITLE % OVER SALES PLAN Bonus Level Bonus Amount
Store Manager 5.00% 2
Assistant Mgr 11.00% 4



Help? Thanks!!



  #5   Report Post  
Posted to microsoft.public.excel.misc
eed eed is offline
external usenet poster
 
Posts: 20
Default PLEASE HELP! Return a Value Using Multiple Sources

Hi -
So I changed the format, but am not quite sure what my formula needs to look
like specifically - could you provide some more detail? It would be much
appreciated - thanks!

"Jim Thomlinson" wrote:

Your souce table is very poorly set up for what you are trying to do... You
need the table to be set up as more of a paired values table as follows.

Title Level Lower % Upper % Amount
Store Manager 1 5% 7% xx
Store Manager 1 7% 9% xx
Store Manager 1 9% 11% xx
Store Manager 1 11% 100% xx
Store Manager 2 5% 7% xx
Store Manager 2 7% 9% xx
Store Manager 2 9% 11% xx
Store Manager 2 11% 100% xx
Store Manager 3 5% 7% xx
Store Manager 3 7% 9% xx
Store Manager 3 9% 11% xx
Store Manager 3 11% 100% xx
Store Manager 4 5% 7% xx
Store Manager 4 7% 9% xx
Store Manager 4 9% 11% xx
Store Manager 4 11% 100% xx
Assistant Manager 1 5% 7% xx
Assistant Manager 1 7% 9% xx
Assistant Manager 1 9% 11% xx
Assistant Manager 1 11% 100% xx
Assistant Manager 2 5% 7% xx
Assistant Manager 2 7% 9% xx
Assistant Manager 2 9% 11% xx
Assistant Manager 2 11% 100% xx

At that point using a simple SumProduct Formula you can get your amounts...
In it's current format you will have a LOT of problems...
--
HTH...

Jim Thomlinson


"eed" wrote:

I need to return a value (a $AMOUNT) based on the following information:
TITLE, LEVEL 1 2 3 or 4, and a percentage range.

Ex: If the [TITLE, ie: Store Manager] exceeds their sales plan by a
[PERCENTAGE RANGE, ie: 1-5%], then they receive a certain bonus [$AMOUNT]
based on their [LEVEL].

The static information is currently set up in a chart as follows:

Store Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X
Associate Manager Level 1 Level 2 Level 3
Level 4
Exceeds Sales Plan 5.00%-6.99% $X $X $X $X
Exceeds Sales Plan 7.00%-8.99% $X $X $X $X
Exceeds Sales Plan 9.00%-10.99% $X $X $X $X
Exceeds Sales Plan 11.00% + $X $X $X $X

The info above is in SHEET 1. 'Store Manager' is in A1. Levels 1-4 for store
manager are in B1-E1

The variable/monthly info is on SHEET 1 and contains the info that tells me
who is entitled to receive a bonus, but ultimately I need to return the
$AMOUNT (Bonus Amount column) they should receive based on the chart above.
The TITLE heading is A1, % Over Sales Plan is in A2, etc.

TITLE % OVER SALES PLAN Bonus Level Bonus Amount
Store Manager 5.00% 2
Assistant Mgr 11.00% 4



Help? Thanks!!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Return a Value Using Multiple Sources eed Excel Discussion (Misc queries) 0 September 15th 09 08:29 PM
Return a Value Using Multiple Sources eed Excel Discussion (Misc queries) 3 September 10th 09 05:45 PM
Return a value based on multiple sources eed Excel Discussion (Misc queries) 1 September 9th 09 09:54 PM
Data Validation with Multiple Sources Jerkyboy Excel Discussion (Misc queries) 1 August 15th 06 10:49 PM
Pivot table - multiple sources BC... Excel Discussion (Misc queries) 3 May 12th 06 01:02 AM


All times are GMT +1. The time now is 09:33 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"