Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Yet another conditional formating question (Excel 2003)

Good morning,

I have a spreadsheet that calculates the incident rate for various work
sites - 17 in total. I would like the cell with the highest incident rate to
have its background change to red. I'm uncertain as to how I can have the
worksheet compare the 17 values and determine which is the highest. With
conditional formating I am able to set 3 conditions and not the 16 I would
need to solve my problem that way. Thanks in advance for any help.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Yet another conditional formating question (Excel 2003)

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21*pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various work
sites - 17 in total. *I would like the cell with the highest incident rate to
have its background change to red. *I'm uncertain as to how I can have the
worksheet compare the 17 values and determine which is the highest. *With
conditional formating I am able to set 3 conditions and not the 16 I would
need to solve my problem that way. *Thanks in advance for any help.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Yet another conditional formating question (Excel 2003)

Clearly I have done something incorrectly. I used the following as the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of the
cells changing color. I tried to outsmart it by using your second suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various work
sites - 17 in total. I would like the cell with the highest incident rate to
have its background change to red. I'm uncertain as to how I can have the
worksheet compare the 17 values and determine which is the highest. With
conditional formating I am able to set 3 conditions and not the 16 I would
need to solve my problem that way. Thanks in advance for any help.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Yet another conditional formating question (Excel 2003)

Select P8:P25
With P8 the activecell, use this
Format|conditinal formatting
Formula is: p8=max($p$8:$p$25)

Same kind of thing with the second condition (if you wanted it):
formula is: p8=large($p$8:$p$25,2)



REJesser wrote:

Clearly I have done something incorrectly. I used the following as the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of the
cells changing color. I tried to outsmart it by using your second suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various work
sites - 17 in total. I would like the cell with the highest incident rate to
have its background change to red. I'm uncertain as to how I can have the
worksheet compare the 17 values and determine which is the highest. With
conditional formating I am able to set 3 conditions and not the 16 I would
need to solve my problem that way. Thanks in advance for any help.




--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Yet another conditional formating question (Excel 2003)

Making progress; however, when the formula is saved as a condition, quotes
are placed around the whole darn thing.

"P8=MAX($P$8:$P$25)" instead of just P8=MAX($P$8:$P$25)

These quotes seem to render the formula useless. How can I keep the quotes
from appearing? Thanks.

"Dave Peterson" wrote:

Select P8:P25
With P8 the activecell, use this
Format|conditinal formatting
Formula is: p8=max($p$8:$p$25)

Same kind of thing with the second condition (if you wanted it):
formula is: p8=large($p$8:$p$25,2)



REJesser wrote:

Clearly I have done something incorrectly. I used the following as the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of the
cells changing color. I tried to outsmart it by using your second suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various work
sites - 17 in total. I would like the cell with the highest incident rate to
have its background change to red. I'm uncertain as to how I can have the
worksheet compare the 17 values and determine which is the highest. With
conditional formating I am able to set 3 conditions and not the 16 I would
need to solve my problem that way. Thanks in advance for any help.



--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Yet another conditional formating question (Excel 2003)

What Dave gave you was a formula.
All formulas *start* with an equal sign.

Therefore, enter:

=p8=max($p$8:$p$25)


--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"REJesser" wrote in message
...
Making progress; however, when the formula is saved as a condition, quotes
are placed around the whole darn thing.

"P8=MAX($P$8:$P$25)" instead of just P8=MAX($P$8:$P$25)

These quotes seem to render the formula useless. How can I keep the quotes
from appearing? Thanks.

"Dave Peterson" wrote:

Select P8:P25
With P8 the activecell, use this
Format|conditinal formatting
Formula is: p8=max($p$8:$p$25)

Same kind of thing with the second condition (if you wanted it):
formula is: p8=large($p$8:$p$25,2)



REJesser wrote:

Clearly I have done something incorrectly. I used the following as the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of the
cells changing color. I tried to outsmart it by using your second
suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various
work
sites - 17 in total. I would like the cell with the highest
incident rate to
have its background change to red. I'm uncertain as to how I can
have the
worksheet compare the 17 values and determine which is the highest.
With
conditional formating I am able to set 3 conditions and not the 16 I
would
need to solve my problem that way. Thanks in advance for any help.



--

Dave Peterson



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Yet another conditional formating question (Excel 2003)

Oops.

Use:
=P8=MAX($P$8:$P$25)

Sorry about that.

REJesser wrote:

Making progress; however, when the formula is saved as a condition, quotes
are placed around the whole darn thing.

"P8=MAX($P$8:$P$25)" instead of just P8=MAX($P$8:$P$25)

These quotes seem to render the formula useless. How can I keep the quotes
from appearing? Thanks.

"Dave Peterson" wrote:

Select P8:P25
With P8 the activecell, use this
Format|conditinal formatting
Formula is: p8=max($p$8:$p$25)

Same kind of thing with the second condition (if you wanted it):
formula is: p8=large($p$8:$p$25,2)



REJesser wrote:

Clearly I have done something incorrectly. I used the following as the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of the
cells changing color. I tried to outsmart it by using your second suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various work
sites - 17 in total. I would like the cell with the highest incident rate to
have its background change to red. I'm uncertain as to how I can have the
worksheet compare the 17 values and determine which is the highest. With
conditional formating I am able to set 3 conditions and not the 16 I would
need to solve my problem that way. Thanks in advance for any help.



--

Dave Peterson


--

Dave Peterson
  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Yet another conditional formating question (Excel 2003)

And there was much rejoicing! Thanks to all of you for your assistance.

"RagDyeR" wrote:

What Dave gave you was a formula.
All formulas *start* with an equal sign.

Therefore, enter:

=p8=max($p$8:$p$25)


--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"REJesser" wrote in message
...
Making progress; however, when the formula is saved as a condition, quotes
are placed around the whole darn thing.

"P8=MAX($P$8:$P$25)" instead of just P8=MAX($P$8:$P$25)

These quotes seem to render the formula useless. How can I keep the quotes
from appearing? Thanks.

"Dave Peterson" wrote:

Select P8:P25
With P8 the activecell, use this
Format|conditinal formatting
Formula is: p8=max($p$8:$p$25)

Same kind of thing with the second condition (if you wanted it):
formula is: p8=large($p$8:$p$25,2)



REJesser wrote:

Clearly I have done something incorrectly. I used the following as the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of the
cells changing color. I tried to outsmart it by using your second
suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various
work
sites - 17 in total. I would like the cell with the highest
incident rate to
have its background change to red. I'm uncertain as to how I can
have the
worksheet compare the 17 values and determine which is the highest.
With
conditional formating I am able to set 3 conditions and not the 16 I
would
need to solve my problem that way. Thanks in advance for any help.



--

Dave Peterson




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default Yet another conditional formating question (Excel 2003)

We all appreciate the feed-back.
--

Regards,

RD
-----------------------------------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit !
-----------------------------------------------------------------------------------------------

"REJesser" wrote in message
...
And there was much rejoicing! Thanks to all of you for your assistance.

"RagDyeR" wrote:

What Dave gave you was a formula.
All formulas *start* with an equal sign.

Therefore, enter:

=p8=max($p$8:$p$25)


--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===

"REJesser" wrote in message
...
Making progress; however, when the formula is saved as a condition, quotes
are placed around the whole darn thing.

"P8=MAX($P$8:$P$25)" instead of just P8=MAX($P$8:$P$25)

These quotes seem to render the formula useless. How can I keep the
quotes
from appearing? Thanks.

"Dave Peterson" wrote:

Select P8:P25
With P8 the activecell, use this
Format|conditinal formatting
Formula is: p8=max($p$8:$p$25)

Same kind of thing with the second condition (if you wanted it):
formula is: p8=large($p$8:$p$25,2)



REJesser wrote:

Clearly I have done something incorrectly. I used the following as
the
condition:

Formula Is =MAX($P$8:$P$25)

and then pasted it into cells P8 through P25. The result is all of
the
cells changing color. I tried to outsmart it by using your second
suggestion.

Formula Is =LARGE($P$8:$P$25,1)

I lost. What am I doing incorrectly? Thanks.

"Pete_UK" wrote:

Can't you use the MAX function in a Formula IS condition? If you
want
a different colour for the second largest, then you can use the
LARGE( ... 2) function.

Hope this helps.

Pete

On May 14, 2:21 pm, REJesser
wrote:
Good morning,

I have a spreadsheet that calculates the incident rate for various
work
sites - 17 in total. I would like the cell with the highest
incident rate to
have its background change to red. I'm uncertain as to how I can
have the
worksheet compare the 17 values and determine which is the
highest.
With
conditional formating I am able to set 3 conditions and not the 16
I
would
need to solve my problem that way. Thanks in advance for any
help.



--

Dave Peterson






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
Conditional Formating (?) question mmills421 Excel Discussion (Misc queries) 12 May 8th 08 10:00 PM
CONDITIONAL FORMATING QUESTION Megan Excel Discussion (Misc queries) 3 November 15th 07 02:52 PM
Conditional Formating Question carl Excel Worksheet Functions 4 March 10th 07 11:30 AM
Another Conditional Formating Question RalphSE Excel Worksheet Functions 2 March 16th 06 07:05 PM
Conditional Formating Question terri Excel Discussion (Misc queries) 3 November 27th 05 02:01 AM


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