Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default I really need help with a rule

I have a set of scoring results for individuals for 8 different areas eg:
1 2 3 4 5 6 7 8
________________
John 3 3 2 3 2 2 3 3
Mark 1 1 1 1 1 1 1 1
Mary 2 2 2 2 3 2 3 2
Sara 0 0 0 0 0 0 0 0
Kate 3 3 2 2 2 3 2 3

At the end of each row I would like a formula that calculates the following:

*If someone got mainly 3's then the cell should say "HiPo" (High Potential)
*If someone got mainly 2's then the cell should say "HiVa" (High Value)
*If someone got mainly 1's then the cell should say "DR" (DEvelopment
Required)
*If someone got mainly 0's then the cell sould say "NiR" (New in Role)
Thankyou for your help on this
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 72
Default I really need help with a rule

=IF(MODE([range]))=3"HiPo",.................

should give you what you want


"TORIA28" wrote in message
...
I have a set of scoring results for individuals for 8 different areas eg:
1 2 3 4 5 6 7 8
________________
John 3 3 2 3 2 2 3 3
Mark 1 1 1 1 1 1 1 1
Mary 2 2 2 2 3 2 3 2
Sara 0 0 0 0 0 0 0 0
Kate 3 3 2 2 2 3 2 3

At the end of each row I would like a formula that calculates the
following:

*If someone got mainly 3's then the cell should say "HiPo" (High
Potential)
*If someone got mainly 2's then the cell should say "HiVa" (High Value)
*If someone got mainly 1's then the cell should say "DR" (DEvelopment
Required)
*If someone got mainly 0's then the cell sould say "NiR" (New in Role)
Thankyou for your help on this



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default I really need help with a rule

Hi Graham, thankyou for the help but it doesn't seem to be working. Also how
do I add to the rule so that if the mode is 2 is is "HiVA" etc, many thanks

Toria

"Graham Whitehead" wrote:

=IF(MODE([range]))=3"HiPo",.................

should give you what you want


"TORIA28" wrote in message
...
I have a set of scoring results for individuals for 8 different areas eg:
1 2 3 4 5 6 7 8
________________
John 3 3 2 3 2 2 3 3
Mark 1 1 1 1 1 1 1 1
Mary 2 2 2 2 3 2 3 2
Sara 0 0 0 0 0 0 0 0
Kate 3 3 2 2 2 3 2 3

At the end of each row I would like a formula that calculates the
following:

*If someone got mainly 3's then the cell should say "HiPo" (High
Potential)
*If someone got mainly 2's then the cell should say "HiVa" (High Value)
*If someone got mainly 1's then the cell should say "DR" (DEvelopment
Required)
*If someone got mainly 0's then the cell sould say "NiR" (New in Role)
Thankyou for your help on this




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default I really need help with a rule

Try this:

=IF(MODE([range])=3,"HiPo",IF(MODE([range])=2,"HiVa",IF(MODE([range])
=1,"DR",IF(MODE([range])=0,"NiR",""))))

where [range] might be B3:I3 for John.

Copy down as required.

Hope this helps.

Pete

On Mar 9, 11:00*am, TORIA28 wrote:
Hi Graham, thankyou for the help but it doesn't seem to be working. Also how
do I add to the rule so that if the mode is 2 is is "HiVA" etc, many thanks

Toria



"Graham Whitehead" wrote:
=IF(MODE([range]))=3"HiPo",.................


should give you what you want


"TORIA28" wrote in message
...
I have a set of scoring results for individuals for 8 different areas eg:
* * * * * * * *1 *2 *3 *4 *5 *6 *7 *8
* * * * * * * *________________
John * * * * 3 *3 *2 *3 *2 *2 *3 *3
Mark * * * * 1 *1 *1 *1 *1 *1 *1 *1
Mary * * * * 2 *2 *2 *2 *3 *2 *3 *2
Sara * * * * 0 *0 *0 *0 *0 *0 *0 *0
Kate * * * * 3 *3 *2 *2 *2 *3 *2 *3


At the end of each row I would like a formula that calculates the
following:


*If someone got mainly 3's then the cell should say "HiPo" (High
Potential)
*If someone got mainly 2's then the cell should say "HiVa" (High Value)
*If someone got mainly 1's then the cell should say "DR" (DEvelopment
Required)
*If someone got mainly 0's then the cell sould say "NiR" (New in Role)
Thankyou for your help on this- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 418
Default I really need help with a rule

"TORIA28" wrote:
At the end of each row I would like a formula that calculates the following:
*If someone got mainly 3's then the cell should say "HiPo" (High Potential)
*If someone got mainly 2's then the cell should say "HiVa" (High Value)
*If someone got mainly 1's then the cell should say "DR" (DEvelopment
Required)
*If someone got mainly 0's then the cell sould say "NiR" (New in Role)


Suppose the scores for John are in B3:I3. Then:

=choose(1+mode(B3:I3),"NR","CR","HiVa","HiPo")


----- original posting -----

"TORIA28" wrote:
I have a set of scoring results for individuals for 8 different areas eg:
1 2 3 4 5 6 7 8
________________
John 3 3 2 3 2 2 3 3
Mark 1 1 1 1 1 1 1 1
Mary 2 2 2 2 3 2 3 2
Sara 0 0 0 0 0 0 0 0
Kate 3 3 2 2 2 3 2 3

At the end of each row I would like a formula that calculates the following:

*If someone got mainly 3's then the cell should say "HiPo" (High Potential)
*If someone got mainly 2's then the cell should say "HiVa" (High Value)
*If someone got mainly 1's then the cell should say "DR" (DEvelopment
Required)
*If someone got mainly 0's then the cell sould say "NiR" (New in Role)
Thankyou for your help on this

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
If/Then Rule Honorbar Excel Discussion (Misc queries) 2 January 26th 09 05:17 PM
Validation Rule aubrey New Users to Excel 0 October 28th 08 07:12 PM
7 Function rule Helpme Excel Worksheet Functions 4 December 29th 06 01:41 AM
Validation rule nick Excel Discussion (Misc queries) 4 March 6th 06 04:57 PM
validation rule andrewm Excel Worksheet Functions 7 June 23rd 05 06:45 AM


All times are GMT +1. The time now is 10:54 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"