#1   Report Post  
Posted to microsoft.public.excel.misc
YMC YMC is offline
external usenet poster
 
Posts: 11
Default Color Help Please

i am running excel 2000 (yah its a little old but gets the job done) ok here
is my question. lets say i have a whole list of numbers in a unknown amout of
cells in a column. for example: 357,901 357,902 and 357,903. how would i make
the highest number (357,903) turn red, Also how would i make lowest number
(357,901) turn blue? thankyou in advance
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Color Help Please

Use conditional formatting with Formula Is something like:

=A1=MAX(A:A) and pick your color
then copy down th column


Repeat this with MIN and a new color
--
Gary''s Student - gsnu200765


"YMC" wrote:

i am running excel 2000 (yah its a little old but gets the job done) ok here
is my question. lets say i have a whole list of numbers in a unknown amout of
cells in a column. for example: 357,901 357,902 and 357,903. how would i make
the highest number (357,903) turn red, Also how would i make lowest number
(357,901) turn blue? thankyou in advance

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default Color Help Please

Assuming your list is in cells A1:A3, use this formula in Format |
Condition Formatting:

=MAX(A3:A5)=A3 would return Green (the color I specifiy for highest)
if cell A3 was the highest of cells A1 : A3.

=MIN(A3:A5)=A1 would return Red (the color I specifiy for lowest) if
cell A1 was the highest of cells A1 : A3.

You can create this conditional formula for the first cell in the
series, then paste the formatting (using the format painter icon) down
the list. Make sure your current cell reference is relative, meaning
=MAX(A3:A5)=A3, not =MAX(A3:A5)=$A$3.

  #4   Report Post  
Posted to microsoft.public.excel.misc
YMC YMC is offline
external usenet poster
 
Posts: 11
Default Color Help Please

that was just an example. i will go into detail a little bit more. basicly
what is happening is that data is being transfered into my excel sheet from a
3rd party app. so my problem is that i really have no idea of how much
information will be put into the sheet. the formula u use works but, not
knowing the amount of data that could go onto the sheet is my main problem
right now. it could range from 1 cell of data to 30,000+. so therefore the
method that u have used is more or less combersome approach in my situation.
if excel cant do this method of coloring than what is my next option, vbcode,
macros? any kind of help or an idea is greatly appreciated. thankyou

"HKaplan" wrote:

Assuming your list is in cells A1:A3, use this formula in Format |
Condition Formatting:

=MAX(A3:A5)=A3 would return Green (the color I specifiy for highest)
if cell A3 was the highest of cells A1 : A3.

=MIN(A3:A5)=A1 would return Red (the color I specifiy for lowest) if
cell A1 was the highest of cells A1 : A3.

You can create this conditional formula for the first cell in the
series, then paste the formatting (using the format painter icon) down
the list. Make sure your current cell reference is relative, meaning
=MAX(A3:A5)=A3, not =MAX(A3:A5)=$A$3.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default Color Help Please

You can open one sheet with data and record/save a macro to automate
future sheets.
Step1 - Put the cursor on the first cell of data
Step 2 - Start your macro recorder
Step 3 - Create the conditional formatting for the first cell
Step 4 - click the format painter icon
Step 5 - click Shift+Ctrl+Down Arrow.
Step 6 - Click Ctrl+Home
Step 7 - Stop the macro.

Open a new set of data and run the macro. This should work.


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Color Help Please

It does not matter how much data has been pasted into column A. The
conditional formula will handle the entire column!!


Just copy the conditional format from A1 and paste it ALL THE WAY DOWN.
--
Gary''s Student - gsnu200765


"YMC" wrote:

that was just an example. i will go into detail a little bit more. basicly
what is happening is that data is being transfered into my excel sheet from a
3rd party app. so my problem is that i really have no idea of how much
information will be put into the sheet. the formula u use works but, not
knowing the amount of data that could go onto the sheet is my main problem
right now. it could range from 1 cell of data to 30,000+. so therefore the
method that u have used is more or less combersome approach in my situation.
if excel cant do this method of coloring than what is my next option, vbcode,
macros? any kind of help or an idea is greatly appreciated. thankyou

"HKaplan" wrote:

Assuming your list is in cells A1:A3, use this formula in Format |
Condition Formatting:

=MAX(A3:A5)=A3 would return Green (the color I specifiy for highest)
if cell A3 was the highest of cells A1 : A3.

=MIN(A3:A5)=A1 would return Red (the color I specifiy for lowest) if
cell A1 was the highest of cells A1 : A3.

You can create this conditional formula for the first cell in the
series, then paste the formatting (using the format painter icon) down
the list. Make sure your current cell reference is relative, meaning
=MAX(A3:A5)=A3, not =MAX(A3:A5)=$A$3.


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Color Help Please

I think you intended =MIN(A$1:A$3)=A1 not =MIN(A3:A5)=A1 ?

Although the reference of the current cell needs to be relative, the
reference of the range needs to be absolute (which is presumably why you
ended up with A3:A5 when you copied down from A1 to A3).
--
David Biddulph

"HKaplan" wrote in message
...
Assuming your list is in cells A1:A3, use this formula in Format |
Condition Formatting:

=MAX(A3:A5)=A3 would return Green (the color I specifiy for highest)
if cell A3 was the highest of cells A1 : A3.

=MIN(A3:A5)=A1 would return Red (the color I specifiy for lowest) if
cell A1 was the highest of cells A1 : A3.

You can create this conditional formula for the first cell in the
series, then paste the formatting (using the format painter icon) down
the list. Make sure your current cell reference is relative, meaning
=MAX(A3:A5)=A3, not =MAX(A3:A5)=$A$3.



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
Can't format cell color/text color in Office Excel 2003 in fil Tony S Excel Discussion (Misc queries) 1 December 21st 07 01:41 PM
Can't format cell color/text color in Office Excel 2003 in files . albertaman Excel Discussion (Misc queries) 0 February 16th 06 03:56 AM
My fill color and font color do not work in Excel Std Edition 2003 chapstick Excel Discussion (Misc queries) 1 September 11th 05 08:48 PM
Excel 2003 will not display color fonts or color fill cells DaveC Excel Worksheet Functions 1 April 11th 05 04:38 PM
My excel 2003 wont let me fill cells with color or color the tabs. trizog New Users to Excel 2 February 22nd 05 06:43 PM


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