Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Conditional Formatting Question

I have created a pricing matrix in Excel 2003 and I am trying to use the
conditional formatting function to highlight the top 3 cheapest prices in
each row. I have tried to set up the formatting, but I continue to get an
error message that says "Change the reference to a single cell, or use the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas would be
appreciated.

Thanks,
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Conditional Formatting Question

highlight the top 3 cheapest prices

In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to use the
conditional formatting function to highlight the top 3 cheapest prices in
each row. I have tried to set up the formatting, but I continue to get an
error message that says "Change the reference to a single cell, or use the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas would be
appreciated.

Thanks,



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Conditional Formatting Question

Yes, I want to highlight the 3 "lowest" prices, which will change daily. I
have them linked to another page which will be updated everyday.

"T. Valko" wrote:

highlight the top 3 cheapest prices


In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to use the
conditional formatting function to highlight the top 3 cheapest prices in
each row. I have tried to set up the formatting, but I continue to get an
error message that says "Change the reference to a single cell, or use the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas would be
appreciated.

Thanks,




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Conditional Formatting Question

Assuming there will *always* be at least 3 prices...

The prices are in the range A1:E1...

Select the range A1:E1
Goto the menu FormatConditional Formatting
Formula Is:

=AND(A1<"",A1<=SMALL($A1:$E1,3))

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
Yes, I want to highlight the 3 "lowest" prices, which will change daily. I
have them linked to another page which will be updated everyday.

"T. Valko" wrote:

highlight the top 3 cheapest prices


In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to use the
conditional formatting function to highlight the top 3 cheapest prices
in
each row. I have tried to set up the formatting, but I continue to get
an
error message that says "Change the reference to a single cell, or use
the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas would
be
appreciated.

Thanks,






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Conditional Formatting Question

When I enter in the formula - no change occurs.....

Some rows maybe 20 prices, and some may have 10. What I ultimatley am
looking to do, is rank the top 3 prices from cheapest, to 2nd cheapest, to
3rd cheapest and have each price highlighted a different color. Sorry if this
is confusing.... :)
I appreciate your help!

"T. Valko" wrote:

Assuming there will *always* be at least 3 prices...

The prices are in the range A1:E1...

Select the range A1:E1
Goto the menu FormatConditional Formatting
Formula Is:

=AND(A1<"",A1<=SMALL($A1:$E1,3))

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
Yes, I want to highlight the 3 "lowest" prices, which will change daily. I
have them linked to another page which will be updated everyday.

"T. Valko" wrote:

highlight the top 3 cheapest prices

In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to use the
conditional formatting function to highlight the top 3 cheapest prices
in
each row. I have tried to set up the formatting, but I continue to get
an
error message that says "Change the reference to a single cell, or use
the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas would
be
appreciated.

Thanks,








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Conditional Formatting Question

Ok...

Let's assume the range of interest is A1:G5.

Not all rows will have the same amount of numbers in them but the last
column that might have a number is column G.

Select the range A1:G5
Goto the menu formatConditional Formatting
Condition 1
Formula Is:

=AND(A1<"",A1=MIN($A1:$G1))

Click the Format button
Select the desired style(s)
OK

Click the Add button

Condition 2
Formula Is:

=A1=SMALL($A1:$G1,2)

Click the Format button
Select the desired style(s)
OK


Click the Add button

Condition 3
Formula Is:

=A1=SMALL($A1:$G1,3)

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
When I enter in the formula - no change occurs.....

Some rows maybe 20 prices, and some may have 10. What I ultimatley am
looking to do, is rank the top 3 prices from cheapest, to 2nd cheapest, to
3rd cheapest and have each price highlighted a different color. Sorry if
this
is confusing.... :)
I appreciate your help!

"T. Valko" wrote:

Assuming there will *always* be at least 3 prices...

The prices are in the range A1:E1...

Select the range A1:E1
Goto the menu FormatConditional Formatting
Formula Is:

=AND(A1<"",A1<=SMALL($A1:$E1,3))

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
Yes, I want to highlight the 3 "lowest" prices, which will change
daily. I
have them linked to another page which will be updated everyday.

"T. Valko" wrote:

highlight the top 3 cheapest prices

In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to use
the
conditional formatting function to highlight the top 3 cheapest
prices
in
each row. I have tried to set up the formatting, but I continue to
get
an
error message that says "Change the reference to a single cell, or
use
the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas
would
be
appreciated.

Thanks,








  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Conditional Formatting Question

It worked!!! Thank you SO much for your help!!

Lindsay

"T. Valko" wrote:

Ok...

Let's assume the range of interest is A1:G5.

Not all rows will have the same amount of numbers in them but the last
column that might have a number is column G.

Select the range A1:G5
Goto the menu formatConditional Formatting
Condition 1
Formula Is:

=AND(A1<"",A1=MIN($A1:$G1))

Click the Format button
Select the desired style(s)
OK

Click the Add button

Condition 2
Formula Is:

=A1=SMALL($A1:$G1,2)

Click the Format button
Select the desired style(s)
OK


Click the Add button

Condition 3
Formula Is:

=A1=SMALL($A1:$G1,3)

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
When I enter in the formula - no change occurs.....

Some rows maybe 20 prices, and some may have 10. What I ultimatley am
looking to do, is rank the top 3 prices from cheapest, to 2nd cheapest, to
3rd cheapest and have each price highlighted a different color. Sorry if
this
is confusing.... :)
I appreciate your help!

"T. Valko" wrote:

Assuming there will *always* be at least 3 prices...

The prices are in the range A1:E1...

Select the range A1:E1
Goto the menu FormatConditional Formatting
Formula Is:

=AND(A1<"",A1<=SMALL($A1:$E1,3))

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
Yes, I want to highlight the 3 "lowest" prices, which will change
daily. I
have them linked to another page which will be updated everyday.

"T. Valko" wrote:

highlight the top 3 cheapest prices

In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to use
the
conditional formatting function to highlight the top 3 cheapest
prices
in
each row. I have tried to set up the formatting, but I continue to
get
an
error message that says "Change the reference to a single cell, or
use
the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas
would
be
appreciated.

Thanks,









  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Conditional Formatting Question

You're welocme. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
It worked!!! Thank you SO much for your help!!

Lindsay

"T. Valko" wrote:

Ok...

Let's assume the range of interest is A1:G5.

Not all rows will have the same amount of numbers in them but the last
column that might have a number is column G.

Select the range A1:G5
Goto the menu formatConditional Formatting
Condition 1
Formula Is:

=AND(A1<"",A1=MIN($A1:$G1))

Click the Format button
Select the desired style(s)
OK

Click the Add button

Condition 2
Formula Is:

=A1=SMALL($A1:$G1,2)

Click the Format button
Select the desired style(s)
OK


Click the Add button

Condition 3
Formula Is:

=A1=SMALL($A1:$G1,3)

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
When I enter in the formula - no change occurs.....

Some rows maybe 20 prices, and some may have 10. What I ultimatley am
looking to do, is rank the top 3 prices from cheapest, to 2nd cheapest,
to
3rd cheapest and have each price highlighted a different color. Sorry
if
this
is confusing.... :)
I appreciate your help!

"T. Valko" wrote:

Assuming there will *always* be at least 3 prices...

The prices are in the range A1:E1...

Select the range A1:E1
Goto the menu FormatConditional Formatting
Formula Is:

=AND(A1<"",A1<=SMALL($A1:$E1,3))

Click the Format button
Select the desired style(s)
OK out


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
Yes, I want to highlight the 3 "lowest" prices, which will change
daily. I
have them linked to another page which will be updated everyday.

"T. Valko" wrote:

highlight the top 3 cheapest prices

In other words, you want to highlight the 3 *lowest* prices?

Ok, will there *always* be at least 3 prices?

Where are these prices?


--
Biff
Microsoft Excel MVP


"lindsayr" wrote in message
...
I have created a pricing matrix in Excel 2003 and I am trying to
use
the
conditional formatting function to highlight the top 3 cheapest
prices
in
each row. I have tried to set up the formatting, but I continue
to
get
an
error message that says "Change the reference to a single cell,
or
use
the
reference with a worksheet function."

I'm a bit of a novice when it comes to this program so any ideas
would
be
appreciated.

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
Conditional Formatting Question Matt Excel Discussion (Misc queries) 3 October 3rd 07 07:07 PM
Conditional formatting question [email protected] Excel Worksheet Functions 5 September 25th 07 06:17 PM
Conditional Formatting Question Gary Excel Worksheet Functions 6 May 7th 07 11:32 PM
If/Then and conditional formatting question Max Excel Discussion (Misc queries) 3 March 20th 07 06:41 PM
conditional formatting question Little pete Excel Worksheet Functions 0 January 23rd 07 04:37 PM


All times are GMT +1. The time now is 11:14 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"