Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 74
Default If I have a colunm of numbers, can I format to highlite the smalle

If I have a colunm of numbers, can I conditionally format to highlite the
smallest value in the colunm?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,688
Default If I have a colunm of numbers, can I format to highlite the smalle

Try this:

Assume your numbers are in the range A1:A5
Select the range A1:A5
Goto FormatConditional Formatting
Formula Is: =AND(A1<"",A1=MIN(A$1:A$5))
Click the Format button
Select the style(s) desired
OK out

Biff

"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to highlite the
smallest value in the colunm?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 74
Default If I have a colunm of numbers, can I format to highlite the sm

Biff:

Thanks for your reply. This didn't work for me. My Range is actually J6:J22
so I substituted:

=AND(J6<"",J6=MIN(J$6:J$22))

Does it make a difference if the values in the cells are dirived from a
formular,
<<< =IF(D6=0,0,((C6/(D6*2))+G6))

Darrell

"Biff" wrote:

Try this:

Assume your numbers are in the range A1:A5
Select the range A1:A5
Goto FormatConditional Formatting
Formula Is: =AND(A1<"",A1=MIN(A$1:A$5))
Click the Format button
Select the style(s) desired
OK out

Biff

"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to highlite the
smallest value in the colunm?




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default If I have a colunm of numbers, can I format to highlite the sm

Hi

Did you do as Biff said and SELECT the range first?
In your case select J6:J22, then apply the Conditional Formatting with
Biff's formula.

--
Regards

Roger Govier


"Dr. Darrell" wrote in message
...
Biff:

Thanks for your reply. This didn't work for me. My Range is actually
J6:J22
so I substituted:

=AND(J6<"",J6=MIN(J$6:J$22))

Does it make a difference if the values in the cells are dirived from
a
formular,
<<< =IF(D6=0,0,((C6/(D6*2))+G6))

Darrell

"Biff" wrote:

Try this:

Assume your numbers are in the range A1:A5
Select the range A1:A5
Goto FormatConditional Formatting
Formula Is: =AND(A1<"",A1=MIN(A$1:A$5))
Click the Format button
Select the style(s) desired
OK out

Biff

"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to
highlite the
smallest value in the colunm?






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 74
Default If I have a colunm of numbers, can I format to highlite the sm

Roger:

Sometimes I need to be slapped across the head with a 2 x 4.

Yes indeed, I needed to highlite the cells first. That did work.

"Roger Govier" wrote:

Hi

Did you do as Biff said and SELECT the range first?
In your case select J6:J22, then apply the Conditional Formatting with
Biff's formula.

--
Regards

Roger Govier


"Dr. Darrell" wrote in message
...
Biff:

Thanks for your reply. This didn't work for me. My Range is actually
J6:J22
so I substituted:

=AND(J6<"",J6=MIN(J$6:J$22))

Does it make a difference if the values in the cells are dirived from
a
formular,
<<< =IF(D6=0,0,((C6/(D6*2))+G6))

Darrell

"Biff" wrote:

Try this:

Assume your numbers are in the range A1:A5
Select the range A1:A5
Goto FormatConditional Formatting
Formula Is: =AND(A1<"",A1=MIN(A$1:A$5))
Click the Format button
Select the style(s) desired
OK out

Biff

"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to
highlite the
smallest value in the colunm?








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 74
Default If I have a colunm of numbers, can I format to highlite the sm

Roger and Biff:

It appears that that isn't exactly what I wanted to do. Instead of the Range
being J6:J22 I actually need to use a group of cells. J6 & J29 & J53 & J77

Should I use the same formula and just deliniate my cells with a method
other than a colon?

Darrell

"Dr. Darrell" wrote:

Roger:

Sometimes I need to be slapped across the head with a 2 x 4.

Yes indeed, I needed to highlite the cells first. That did work.

"Roger Govier" wrote:

Hi

Did you do as Biff said and SELECT the range first?
In your case select J6:J22, then apply the Conditional Formatting with
Biff's formula.

--
Regards

Roger Govier


"Dr. Darrell" wrote in message
...
Biff:

Thanks for your reply. This didn't work for me. My Range is actually
J6:J22
so I substituted:

=AND(J6<"",J6=MIN(J$6:J$22))

Does it make a difference if the values in the cells are dirived from
a
formular,
<<< =IF(D6=0,0,((C6/(D6*2))+G6))

Darrell

"Biff" wrote:

Try this:

Assume your numbers are in the range A1:A5
Select the range A1:A5
Goto FormatConditional Formatting
Formula Is: =AND(A1<"",A1=MIN(A$1:A$5))
Click the Format button
Select the style(s) desired
OK out

Biff

"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to
highlite the
smallest value in the colunm?






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default If I have a colunm of numbers, can I format to highlite the smalle

Yes, use a formula of

=A1=MIN(A:A)


"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to highlite the
smallest value in the colunm?



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 74
Default If I have a colunm of numbers, can I format to highlite the sm

Bob:

Thanks for your reply. This didn't work for me. My Range is actually J6:J22
so I substituted:

=J6=MIN(J6:J22)


Does it make a difference if the values in the cells are dirived from a
formular,
<<< =IF(D6=0,0,((C6/(D6*2))+G6))

Darrell

"Bob Phillips" wrote:

Yes, use a formula of

=A1=MIN(A:A)


"Dr. Darrell" wrote in message
...
If I have a colunm of numbers, can I conditionally format to highlite the
smallest value in the colunm?




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
cell format: numbers won't be numbers Craig Fletcher Excel Discussion (Misc queries) 12 May 1st 06 11:04 PM
Conditional format from a list of numbers langba Excel Discussion (Misc queries) 3 April 7th 06 11:02 AM
Format numbers in chart datatable MB Charts and Charting in Excel 3 May 29th 05 03:37 PM
Cell will not format numbers correctly for a 13 digit custom barc. Laudan Excel Worksheet Functions 4 April 11th 05 08:13 PM
Mail Merge - format of numbers Rita Halporn Excel Discussion (Misc queries) 4 December 26th 04 01:19 AM


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