Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 2
Default conditional formatting help

I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell me
the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like to
color the entire row it resides in.

Thanks


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default conditional formatting help

My criteria is where any cell from d3:d28 is greater than 45, than tell me
the highest value from i3:28 and color the winning cell in "i" blue.


Need some clarification.

So, if D25 = 50 and I5 is "the highest value from i3:28" color cell I5 or
"the entire row it resides in."

Is the entire row A5:IV5?

Biff

"Joe" wrote in message
...
I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell me
the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like to
color the entire row it resides in.

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default conditional formatting help

This is for the conditional formatting part.
In A3 let the condition be
Formula is =AND(SUMIF($D$3:$D$28,""&45)0,$I3=MAX($I$3:$I$28 ))
Copy the format to the entire range.
"Joe" wrote:

I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell me
the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like to
color the entire row it resides in.

Thanks



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default conditional formatting help

Joe,

Select all rows 3 to 28 (or cells that you actually want shaded, so that
cell A3 is the activecell), and use Format / CF... with a "Formula is" of

=AND(MAX($D$3:$D$28)45,$I3=MAX($I$3:$I$28))

Set your format for a fill of blue, and you're done. Of course, if there
are two or more values that match then highest value in column A, they will
all be colored.

HTH,
Bernie
MS Excel MVP



"Joe" wrote in message
...
I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell me
the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like to
color the entire row it resides in.

Thanks



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 2
Default conditional formatting help

Bernie,

In a nutshell, this is a spreadsheet with softball averages. Some of the
people in Column D had 2 at bats, and bat .1000 in Column I.
I want to filter out people that had less than 45 at bats and have the
highest batting average for the person over 45 at bats.

With the formula you gave me, it ended up selecting the person with 1 at bat
that is batting .1000, but it did highlight the entire row.
How can we change it so it filters out people with less than 45 at bats?


"Bernie Deitrick" <deitbe @ consumer dot org wrote in message
...
Joe,

Select all rows 3 to 28 (or cells that you actually want shaded, so that
cell A3 is the activecell), and use Format / CF... with a "Formula is" of

=AND(MAX($D$3:$D$28)45,$I3=MAX($I$3:$I$28))

Set your format for a fill of blue, and you're done. Of course, if there
are two or more values that match then highest value in column A, they
will all be colored.

HTH,
Bernie
MS Excel MVP



"Joe" wrote in message
...
I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell
me the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like
to color the entire row it resides in.

Thanks







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default conditional formatting help

Joe,

That is a more complicated situation, one that requires that you use another
cell with a formula that returns the Maximum value for column I where column
D of the same row is over 45. In cell I2, array enter (enter using
Ctrl-Shift-Enter) the formula

=MAX((D3:D2845)*I3:I28)

Actually, I would recommend that you use

=MAX((D3:D28I1)*I3:I28)

and then enter the 45 into cell I1. That way, you can easily change the
at-bat-level as the season progresses. Anyway, this formula will ignore the
values in column I, even if they are the actual max, if column D from that
row is less than 45 (or, the value in cell I1).

Then, with a cell in row 3 the active cell, use this CF formula:

=AND($D345,$I3=$I$2)

HTH,
Bernie
MS Excel MVP


"Joe" wrote in message
...
Bernie,

In a nutshell, this is a spreadsheet with softball averages. Some of the
people in Column D had 2 at bats, and bat .1000 in Column I.
I want to filter out people that had less than 45 at bats and have the
highest batting average for the person over 45 at bats.

With the formula you gave me, it ended up selecting the person with 1 at
bat that is batting .1000, but it did highlight the entire row.
How can we change it so it filters out people with less than 45 at bats?


"Bernie Deitrick" <deitbe @ consumer dot org wrote in message
...
Joe,

Select all rows 3 to 28 (or cells that you actually want shaded, so that
cell A3 is the activecell), and use Format / CF... with a "Formula is"
of

=AND(MAX($D$3:$D$28)45,$I3=MAX($I$3:$I$28))

Set your format for a fill of blue, and you're done. Of course, if there
are two or more values that match then highest value in column A, they
will all be colored.

HTH,
Bernie
MS Excel MVP



"Joe" wrote in message
...
I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell
me the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like
to color the entire row it resides in.

Thanks







  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default conditional formatting help

Highlight your range
Conditonal Formatting
Formula Is: AND(D345,I3=MAX($I$3:$I$28)
Format any color you like


"Joe" wrote:

I'm trying to setup conditional formatting in Excel and not having much
luck.

My criteria is where any cell from d3:d28 is greater than 45, than tell me
the highest value from i3:28 and color the winning cell in "i" blue.

If possible, instead of coloring the winning cell in "i" blue, I'd like to
color the entire row it resides in.

Thanks



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
sorting a range with conditional formatting renie Excel Worksheet Functions 2 June 2nd 06 10:43 PM
conditional formatting glitches Kat Excel Discussion (Misc queries) 2 May 26th 06 08:16 PM
Keeping conditional formatting when sorting Andrea A Excel Discussion (Misc queries) 0 April 4th 06 03:00 PM
conditional formatting Rich Excel Discussion (Misc queries) 2 April 1st 06 10:27 AM
cannot use ISEVEN or ISODD functions in Conditional Formatting Scott Paine Excel Worksheet Functions 6 December 6th 05 09:44 PM


All times are GMT +1. The time now is 04:20 AM.

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"