Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Having 10 cells with the highest number turn color | Excel Discussion (Misc queries) | |||
How can i get the 3 highest in a range | Excel Discussion (Misc queries) | |||
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? | Excel Worksheet Functions | |||
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? | Excel Worksheet Functions | |||
How do I add only the highest three numbers in a range of data? | Excel Worksheet Functions |