Highlighting highest & lowest numbers using CF

hsandeep

Well-known Member
Joined
Dec 6, 2008
Messages
1,213
Office Version
  1. 2010
Platform
  1. Windows
  2. Mobile
I have a contiguous row D10:Y10 which generates +ve numerical values OR 0 (but not null or spaces/(s)).

Using CF, I want to highlight background cell with ‘green’ color, for highest value from D10:Y10 & with ‘red’ color for lowest value.

Please note:
  • By default, 0 is generated in all D10:Y10
  • If all cells in D10:Y10=0, then I don’t want ‘green’ or ‘red’ color.
  • Generation of values ‘starts’ from D10 & then ‘moves’ cell by cell up to Y10 example D10=43.52, E10=63.79, F10=88.12, G10:Y10=0
How to accomplish? Thanks in advance.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Ar eyou still using 2010 version

how about

=D10=MINIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")
and
=D10=MAXIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")

Book3
DEFGHIJKLMNOPQR
101045000000000123
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:S10Expression=D10=MAXIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")textNO
D10:S10Expression=D10=MINIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")textNO


otherwise i will post a 2010 version
 
Upvote 0
Ar eyou still using 2010 version

how about

=D10=MINIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")
and
=D10=MAXIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")

Book3
DEFGHIJKLMNOPQR
101045000000000123
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:S10Expression=D10=MAXIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")textNO
D10:S10Expression=D10=MINIFS($D$10:$Y$10,$D$10:$Y$10,"<>0")textNO


otherwise i will post a 2010 version
Hi etaf
Did not worked. I made D10=537, E10=538; F10:Y10=0...nothing happened. Probably, i need a 2010version.
 
Upvote 0
Probably, i need a 2010version.
if you have 2010 version
then
=D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10))
=D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10))

Book3
DEFGHIJKLMNOPQR
101045000000000123
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:S10Expression=D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10))textNO
D10:S10Expression=D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10))textNO
 
Upvote 0
if you have 2010 version
then
=D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10))
=D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10))

Book3
DEFGHIJKLMNOPQR
101045000000000123
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:S10Expression=D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10))textNO
D10:S10Expression=D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10))textNO
This works. But when only D10 has value AND rest all E10:Y10=0, then I don't want green or red. Slight modification in the code requested.
 
Upvote 0
what happens if D11 only has a value - is that highlighted ?
OR is it only if D10 has a value and E10-Y10 is zero - 0

All cells are 0 or a number - no blanks - as stated in above

What colour if you have say
20 in 2 cells only F10 & J10
thats both MAX and MIN - what colour is prioritised - RED or GREEN cannot be both , so the order is important

Book3
DEFGHIJKLMNOPQR
10101030300000000
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:S10Expression=AND(D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
D10:S10Expression=AND(D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
 
Upvote 0
what happens if D11 only has a value - is that highlighted ?
OR is it only if D10 has a value and E10-Y10 is zero - 0

All cells are 0 or a number - no blanks - as stated in above

What colour if you have say
20 in 2 cells only F10 & J10
thats both MAX and MIN - what colour is prioritised - RED or GREEN cannot be both , so the order is important

Book3
DEFGHIJKLMNOPQR
10101030300000000
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:S10Expression=AND(D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
D10:S10Expression=AND(D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
what happens if D11 only has a value - is that highlighted ? D11 never has any value
only if D10 has a value and E10-Y10 is zero - 0 No color in D10 & No color in E10:Y10
What colour if you have say
20 in 2 cells only F10 & J10 It will never happen that D10=0, E10=0 AND F10=20 (or any number), J10=20 (or any number). Number generations starts from D10 & unless it fills D10 with <>0, it does not starts filling E10 with any number. Till then E10=0. Similarly now F10 will remain equal to 0 unless E10<>0, Similarly now G10 will remain equal to 0 unless F10<>0 & so on till Y10<>0.
It will never be D10:I10=0, J10=2000, K10=0, L10=2000
If there is a number in L10, then D10:K10<>0...
here it may happen that cells after L10 i.e. M10:Y10=0.
It may happen that D10=20, E10=10, F10=20 AND rest all G10:Y10=0, then the latest highest cell (here F10) will be green & E10 will be red.
Suppose, D10=100, E10=100 then E10 will be green & D10 will be red.
 
Last edited:
Upvote 0
how about
=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))
=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))

Book3
DEFGHIJKLMNOPQRSTUVWXY
104000000000000000000000
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
 
Upvote 0
how about
=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))
=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))

Book3
DEFGHIJKLMNOPQRSTUVWXY
104000000000000000000000
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textNO
Awesome, breath taking...code works etaf. Only 1 thing when D10:E10<>0 AND rest all F10:Y10=0 AND D10=E10, then E10 must be green AND D10 must be red. Example: D10=539, E10=539, F10:Y10=0, it is showing both D10 & E10 as green!!! Here it should be D10 in red & E10 in green
 
Upvote 0
i have setup 2 additional rules now


RED
=AND($D$10=$E$10,COUNTIFS(F$10:$Y$10,0)=20)
GREEN
=AND($D$10=$E$10,COUNTIFS(F$10:$Y$10,0)=19)

and put them at first and 2nd in the list/order - you have an arrow - top right to change the order
and also ticked STOP IF TRUE

BUT this is now very specific for the range and rules

I may have a think about how to incorporate into the existing rules , as that may simply be adding an OR () - but have a busy day today with grandchildren , so may not get a chance

meanwhile here is the quick solution

Not tested for all possibilities , so you may need to test it throughly

when D&E same

Book3
DEFGHIJKLMNOPQRSTUVWXY
104400000000000000000000
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:Y10Expression=AND($D$10=$E$10,COUNTIFS(F$10:$Y$10,0)=19)textYES
D10:Y10Expression=AND($D$10=$E$10,COUNTIFS(F$10:$Y$10,0)=20)textYES
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textYES
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textYES



other
Book3
DEFGHIJKLMNOPQRSTUVWXY
104410500801000000000000
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D10:Y10Expression=AND($D$10=$E$10,COUNTIFS(F$10:$Y$10,0)=19)textYES
D10:Y10Expression=AND($D$10=$E$10,COUNTIFS(F$10:$Y$10,0)=20)textYES
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MIN(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textYES
D10:Y10Expression=AND(COUNTIF($E$10:$Y$10,0)<>21,D10<>0,D10=MAX(IF($D$10:$Y$10<>0,$D$10:$Y$10)))textYES
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,011
Messages
6,122,677
Members
449,092
Latest member
tayo4dgacorbanget

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top