![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Feb 2002
Posts: 16
|
Is there any way to have excel automatically highlight the highest or lowest number in a column. I don't wish for it to sort or move anything around. I just have weekly data and I want to automatically see the highs and lows.
|
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Use Conditional Formatting with a formula such as...
=OR(A2=MAX(A:A),A2=MIN(A:A)) [ This Message was edited by: Mark W. on 2002-03-01 12:01 ] |
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
Quote:
=A1=MAX($A$1:$A$10) activate Format,and choose a color on the Patterns tab. |
|
|
|
|
|
|
#4 |
|
New Member
Join Date: Feb 2002
Posts: 16
|
Thanks for the help...I still have a question though. I can get this to work now if all my rows are together, ex. A1:A10, but my problem is that I need this to work for A1:A10, A14:A24, A29:A37...etc....I want it to highlight the highest value amongst those groups....does this make sense.
|
|
|
|
|
|
#5 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
No problem. Setup a separate conditional format with its own formula for each range....
=OR(A1=MAX($A$1:$A$10),A1=MIN($A$1:$A$10)) =OR(A14=MAX($A$14:$A$24),A14=MIN($A$14:$A$24)) =OR(A29=MAX($A$29:$A$37),A29=MIN($A$29:$A$37)) ...etc... |
|
|
|
|
|
#6 |
|
New Member
Join Date: Feb 2002
Posts: 16
|
So will that let me choose one high cell out of those 3 groups?
|
|
|
|
|
|
#7 | |
|
Guest
Posts: n/a
|
Quote:
|
|
|
|
|
#8 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,654
|
Quote:
|
|
|
|
|
|
|
#9 |
|
New Member
Join Date: Feb 2002
Posts: 16
|
This is my goal.
This is an example of the data. A1 A2 A3 A7 A8 A9 A14 A15 A16 What I want is to highlight the highest value out these 9 cells. What I'm having trouble with is the fact that they aren't all in succession of each other. Thanks in advance for you patience and help. If I can have it highlight the lowest at the same time is an added bonus. |
|
|
|
|
|
#10 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
Quote:
=A1=MAX($A$1:$A$3,$A$7:$A$9,$A$14:$A$16) for Condition 1 and =A1=MIN($A$1:$A$3,$A$7:$A$9,$A$14:$A$16) for Condition 2. |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|