Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Conditional Formmating

Using Excel 2003
I have a range of cells from A1 to A20 that has conditional formmating. If
someone enters a number from zero to 4.5, the background turns green. The
problem is, before someone even enters a number, the background is green. Why
is this? I don't want to confuse the data entry person. I have 2 other
conditions in those cells that turn the cells yellow and red when other
values are entered. How can I get rid of the green background?
Thank you, Karen

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Conditional Formmating

You don't tell us how you're filling with green. Perhaps you've set the
conditional formatting to fill with green if nothing is entered.

Tyro

"Karen" wrote in message
...
Using Excel 2003
I have a range of cells from A1 to A20 that has conditional formmating. If
someone enters a number from zero to 4.5, the background turns green. The
problem is, before someone even enters a number, the background is green.
Why
is this? I don't want to confuse the data entry person. I have 2 other
conditions in those cells that turn the cells yellow and red when other
values are entered. How can I get rid of the green background?
Thank you, Karen



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Conditional Formmating

Thank you for responding. When you select a range of cells and open
conditional formatting and set the condition to "Cell Value is" - "Between" -
I entered the minimum value as 0 and the maximum value as 4.5. Now before I
even enter a numerical value in any one of those cells, that has conditional
formatting applied, the background is green.
Hope this helps - Thanks, Karen

"Tyro" wrote:

You don't tell us how you're filling with green. Perhaps you've set the
conditional formatting to fill with green if nothing is entered.

Tyro

"Karen" wrote in message
...
Using Excel 2003
I have a range of cells from A1 to A20 that has conditional formmating. If
someone enters a number from zero to 4.5, the background turns green. The
problem is, before someone even enters a number, the background is green.
Why
is this? I don't want to confuse the data entry person. I have 2 other
conditions in those cells that turn the cells yellow and red when other
values are entered. How can I get rid of the green background?
Thank you, Karen




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Conditional Formmating

That's your problem. A blank cell is the same as 0 in conditional
formatting. Change the condition to greater than 0 and less equal 4.5.

Tyro

"Karen" wrote in message
...
Thank you for responding. When you select a range of cells and open
conditional formatting and set the condition to "Cell Value is" -
"Between" -
I entered the minimum value as 0 and the maximum value as 4.5. Now before
I
even enter a numerical value in any one of those cells, that has
conditional
formatting applied, the background is green.
Hope this helps - Thanks, Karen

"Tyro" wrote:

You don't tell us how you're filling with green. Perhaps you've set the
conditional formatting to fill with green if nothing is entered.

Tyro

"Karen" wrote in message
...
Using Excel 2003
I have a range of cells from A1 to A20 that has conditional formmating.
If
someone enters a number from zero to 4.5, the background turns green.
The
problem is, before someone even enters a number, the background is
green.
Why
is this? I don't want to confuse the data entry person. I have 2 other
conditions in those cells that turn the cells yellow and red when other
values are entered. How can I get rid of the green background?
Thank you, Karen






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Conditional Formmating

But sometimes the value will be entered as zero
Karen

"Tyro" wrote:

That's your problem. A blank cell is the same as 0 in conditional
formatting. Change the condition to greater than 0 and less equal 4.5.

Tyro

"Karen" wrote in message
...
Thank you for responding. When you select a range of cells and open
conditional formatting and set the condition to "Cell Value is" -
"Between" -
I entered the minimum value as 0 and the maximum value as 4.5. Now before
I
even enter a numerical value in any one of those cells, that has
conditional
formatting applied, the background is green.
Hope this helps - Thanks, Karen

"Tyro" wrote:

You don't tell us how you're filling with green. Perhaps you've set the
conditional formatting to fill with green if nothing is entered.

Tyro

"Karen" wrote in message
...
Using Excel 2003
I have a range of cells from A1 to A20 that has conditional formmating.
If
someone enters a number from zero to 4.5, the background turns green.
The
problem is, before someone even enters a number, the background is
green.
Why
is this? I don't want to confuse the data entry person. I have 2 other
conditions in those cells that turn the cells yellow and red when other
values are entered. How can I get rid of the green background?
Thank you, Karen









  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Conditional Formmating

Maybe you could use:
Formula is:
=and(isnumber(a1),a1=0,a1<=4.5)

Karen wrote:

But sometimes the value will be entered as zero
Karen

"Tyro" wrote:

That's your problem. A blank cell is the same as 0 in conditional
formatting. Change the condition to greater than 0 and less equal 4.5.

Tyro

"Karen" wrote in message
...
Thank you for responding. When you select a range of cells and open
conditional formatting and set the condition to "Cell Value is" -
"Between" -
I entered the minimum value as 0 and the maximum value as 4.5. Now before
I
even enter a numerical value in any one of those cells, that has
conditional
formatting applied, the background is green.
Hope this helps - Thanks, Karen

"Tyro" wrote:

You don't tell us how you're filling with green. Perhaps you've set the
conditional formatting to fill with green if nothing is entered.

Tyro

"Karen" wrote in message
...
Using Excel 2003
I have a range of cells from A1 to A20 that has conditional formmating.
If
someone enters a number from zero to 4.5, the background turns green.
The
problem is, before someone even enters a number, the background is
green.
Why
is this? I don't want to confuse the data entry person. I have 2 other
conditions in those cells that turn the cells yellow and red when other
values are entered. How can I get rid of the green background?
Thank you, Karen








--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Conditional Formmating

In CF, use not "Cell Value Is", but "Formula Is":
=AND(A1<"",A1=0,A1<=4.5)
--
David Biddulph

"Karen" wrote in message
...
But sometimes the value will be entered as zero
Karen

"Tyro" wrote:

That's your problem. A blank cell is the same as 0 in conditional
formatting. Change the condition to greater than 0 and less equal 4.5.

Tyro

"Karen" wrote in message
...
Thank you for responding. When you select a range of cells and open
conditional formatting and set the condition to "Cell Value is" -
"Between" -
I entered the minimum value as 0 and the maximum value as 4.5. Now
before
I
even enter a numerical value in any one of those cells, that has
conditional
formatting applied, the background is green.
Hope this helps - Thanks, Karen

"Tyro" wrote:

You don't tell us how you're filling with green. Perhaps you've set
the
conditional formatting to fill with green if nothing is entered.

Tyro

"Karen" wrote in message
...
Using Excel 2003
I have a range of cells from A1 to A20 that has conditional
formmating.
If
someone enters a number from zero to 4.5, the background turns
green.
The
problem is, before someone even enters a number, the background is
green.
Why
is this? I don't want to confuse the data entry person. I have 2
other
conditions in those cells that turn the cells yellow and red when
other
values are entered. How can I get rid of the green background?
Thank you, Karen









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
New Conditional Format Overriding Previous Conditional Format Rene Excel Discussion (Misc queries) 3 February 27th 08 06:08 PM
Conditional Rank (or rather, Conditional Range) [email protected] Excel Worksheet Functions 6 April 16th 07 06:15 PM
Conditional Sum Tarique Excel Worksheet Functions 4 July 6th 06 10:16 PM
conditional formmating data and put it into a graph... confused19 Charts and Charting in Excel 2 January 1st 06 02:41 AM
Conditional Formatting that will display conditional data BrainFart Excel Worksheet Functions 1 September 13th 05 05:45 PM


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