Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 86
Default Highest 5 numbers in a range turn red

Hi All,

70 people are voting on 15 products tomorrow night in a serious of
rounds.

Each time I'll end up with 15 numbers in a range. Since it will be on
a presentation, it will be nice if the top ones turn red or highlight
somehow.

Top number will change each time, ie. 10 picked the first round, 5 the
next, etc

I think this is a conditional format, but I have no idea how to do
this.

Any help would be appreciated.

Thanks,

Michele

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default Highest 5 numbers in a range turn red

You are correct on the conditional formatting. In general you want to know if
the number in the cell is greater than or equal to the 5th largest number.
Give this a try..

Place your cursor in Cell A1 and then select the entire column. (all of
Column a is highlighted with cell A1 as the active cell). Now select
Format|Conditonal Format - Formula is
=A1=LARGE($A:$A,5)
And change the format to red...

Note that you could end up with more than 5 cells highlighted if there is a
tie in fifth spot...
--
HTH...

Jim Thomlinson


"mjones" wrote:

Hi All,

70 people are voting on 15 products tomorrow night in a serious of
rounds.

Each time I'll end up with 15 numbers in a range. Since it will be on
a presentation, it will be nice if the top ones turn red or highlight
somehow.

Top number will change each time, ie. 10 picked the first round, 5 the
next, etc

I think this is a conditional format, but I have no idea how to do
this.

Any help would be appreciated.

Thanks,

Michele


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 459
Default Highest 5 numbers in a range turn red

Nel ups.com,
mjones ha scritto:
Hi All,

70 people are voting on 15 products tomorrow night in a serious of
rounds.

Each time I'll end up with 15 numbers in a range. Since it will be on
a presentation, it will be nice if the top ones turn red or highlight
somehow.

Top number will change each time, ie. 10 picked the first round, 5 the
next, etc

I think this is a conditional format, but I have no idea how to do
this.

Any help would be appreciated.

Thanks,

Michele


Hi Michele,

If your numbers are in the range A1:A15, selece the range (A1 should be the
active cell) and try to use this formula in the conditional formatting (use
the option "Formula is"):

=A1=LARGE($A$1:$A$15,5)


--
(I'm not sure of names of menus, options and commands, because
translating from the Italian version of Excel...)

Hope I helped you.


Thanks in advance for your feedback.


Ciao


Franz Verga from Italy

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 86
Default Highest 5 numbers in a range turn red

On Sep 13, 12:40 pm, "Franz Verga" wrote:
Nel ups.com,
mjones ha scritto:





Hi All,


70 people are voting on 15 products tomorrow night in a serious of
rounds.


Each time I'll end up with 15 numbers in a range. Since it will be on
a presentation, it will be nice if the top ones turn red or highlight
somehow.


Top number will change each time, ie. 10 picked the first round, 5 the
next, etc


I think this is a conditional format, but I have no idea how to do
this.


Any help would be appreciated.


Thanks,


Michele


Hi Michele,

If your numbers are in the range A1:A15, selece the range (A1 should be the
active cell) and try to use this formula in the conditional formatting (use
the option "Formula is"):

=A1=LARGE($A$1:$A$15,5)

--
(I'm not sure of names of menus, options and commands, because
translating from the Italian version of Excel...)

Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy- Hide quoted text -

- Show quoted text -


Hey, that works great. Thanks.

Since I have to change the number of winners each round, can I put the
# in a cell (A4) and change the last 5 to whatever is in the cell?

But then I actually ended up with 7 red values. That's because there
were two ties. Can I total the number of winners (red values) in the
range in C34? The range is C5 to C32.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Highest 5 numbers in a range turn red

"mjones" wrote in message
ups.com...
On Sep 13, 12:40 pm, "Franz Verga" wrote:
Nel ups.com,
mjones ha scritto:





Hi All,


70 people are voting on 15 products tomorrow night in a serious of
rounds.


Each time I'll end up with 15 numbers in a range. Since it will be on
a presentation, it will be nice if the top ones turn red or highlight
somehow.


Top number will change each time, ie. 10 picked the first round, 5 the
next, etc


I think this is a conditional format, but I have no idea how to do
this.


Any help would be appreciated.


Thanks,


Michele


Hi Michele,

If your numbers are in the range A1:A15, selece the range (A1 should be
the
active cell) and try to use this formula in the conditional formatting
(use
the option "Formula is"):

=A1=LARGE($A$1:$A$15,5)

--
(I'm not sure of names of menus, options and commands, because
translating from the Italian version of Excel...)

Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy- Hide quoted text -

- Show quoted text -


Hey, that works great. Thanks.

Since I have to change the number of winners each round, can I put the
# in a cell (A4) and change the last 5 to whatever is in the cell?



Yes. Try it like this:

=A1=LARGE($A$1:$A$15,$A$4)



But then I actually ended up with 7 red values. That's because there
were two ties. Can I total the number of winners (red values) in the
range in C34? The range is C5 to C32.


Try this:

=COUNTIF(C5:C32,"="&LARGE(C5:C32,5))

Or:

=COUNTIF(C5:C32,"="&LARGE(C5:C32,A4))

--
Biff
Microsoft Excel MVP


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
Having 10 cells with the highest number turn color artemis1027 Excel Discussion (Misc queries) 5 May 3rd 07 08:53 PM
How can i get the 3 highest in a range Roy Excel Discussion (Misc queries) 5 June 8th 06 01:31 AM
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? C-Man23 Excel Worksheet Functions 3 January 19th 06 09:52 AM
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? C-Man23 Excel Worksheet Functions 1 January 9th 06 01:23 PM
How do I add only the highest three numbers in a range of data? emac_mommy Excel Worksheet Functions 4 January 9th 05 09:40 AM


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