Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Lowkey
 
Posts: n/a
Default Numbers used for Ranking

I have a list of choices for a Ranking to calculate bonus pay
1,2,3, and 4 where
1=0%
2=50%
3=100%
4=150%
I need a function that shows the %, depending on the ranking. Kind of an
IF/Then thing, but I can't get it to work.
  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One way:

A1: <1, 2, 3 or 4

B1: =(A1-1)*50%

In article ,
Lowkey wrote:

I have a list of choices for a Ranking to calculate bonus pay
1,2,3, and 4 where
1=0%
2=50%
3=100%
4=150%
I need a function that shows the %, depending on the ranking. Kind of an
IF/Then thing, but I can't get it to work.

  #3   Report Post  
Lowkey
 
Posts: n/a
Default

That solution would work, but I need the variability in case the payout
multiplier changes. Eg.
1=0%
2=55%
3=100%
4=175%

"JE McGimpsey" wrote:

One way:

A1: <1, 2, 3 or 4

B1: =(A1-1)*50%

In article ,
Lowkey wrote:

I have a list of choices for a Ranking to calculate bonus pay
1,2,3, and 4 where
1=0%
2=50%
3=100%
4=150%
I need a function that shows the %, depending on the ranking. Kind of an
IF/Then thing, but I can't get it to work.


  #4   Report Post  
Bill Kuunders
 
Posts: n/a
Default

=IF(A1=1,"0%",IF(A1=2,"50%",IF(A1=3,"100%",IF(A1=4 ,"150%","invalid rank"))))

if you want to do the calculation at the same time
you could enter
=IF(A1=1,B1,IF(A1=2,1.5*B1,IF(A1=3,2*B1,IF(A1=4,2. 5*B1,"invalid rank"))))

with B1 containing the standard rate or value

--
Greetings from New Zealand
Bill K
"Lowkey" wrote in message
...
I have a list of choices for a Ranking to calculate bonus pay
1,2,3, and 4 where
1=0%
2=50%
3=100%
4=150%
I need a function that shows the %, depending on the ranking. Kind of an
IF/Then thing, but I can't get it to work.



  #5   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Always helps to give a complete specification first, of course. Use a
lookup table:

J K
1 1 0%
2 2 55%
3 3 100%
4 4 175%


Then

=VLOOKUP(A1,J:K,2, FALSE)



In article ,
Lowkey wrote:

That solution would work, but I need the variability in case the payout
multiplier changes. Eg.
1=0%
2=55%
3=100%
4=175%

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
Checking Winning Numbers in the Lottery. Ann Excel Discussion (Misc queries) 4 May 18th 05 10:55 AM
Match Last Occurrence of two numbers and Return Date Sam via OfficeKB.com Excel Worksheet Functions 6 April 5th 05 12:40 PM
Match Last Occurrence of two numbers and Count to Previous Occurence Sam via OfficeKB.com Excel Worksheet Functions 33 April 4th 05 02:17 PM
Count and Sum Total occurrances of two specific numbers Sam via OfficeKB.com Excel Worksheet Functions 10 March 29th 05 08:13 PM
Converting Numbers to Text properly Shirley Munro Excel Discussion (Misc queries) 1 February 16th 05 03:01 PM


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

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

About Us

"It's about Microsoft Excel"