Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 213
Default Using If then to change cell colors in Excel 2007

I'm creating a worksheet to calculate money.. If the amount is negative I
want Excel to display the number in 'Red'.. If Positive I want to have Excel
display the number in 'Green'.. I'm sure this can be done I just can't seem
to figure out how to accomplish this
--
Randy
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Using If then to change cell colors in Excel 2007

Two options, either Conditional Formatting or Custom Format.
--
David Biddulph

"Randy" wrote in message
...
I'm creating a worksheet to calculate money.. If the amount is negative I
want Excel to display the number in 'Red'.. If Positive I want to have
Excel
display the number in 'Green'.. I'm sure this can be done I just can't
seem
to figure out how to accomplish this
--
Randy



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
pub pub is offline
external usenet poster
 
Posts: 29
Default Using If then to change cell colors in Excel 2007

?B?UmFuZHk=?= wrote in
:

I'm creating a worksheet to calculate money.. If the amount is
negative I want Excel to display the number in 'Red'.. If Positive I
want to have Excel display the number in 'Green'.. I'm sure this can
be done I just can't seem to figure out how to accomplish this


theres really 2 ways ot do this
one is conditional formatting
the other is to change the format of the cell

conditional formatting
- highlight your range
- click the big conditional formatting button
- click new rule
- choose format only cells that contain
- choose greater then
- put 0 in the box and set the font color to green
- do it again for less then zero and choose font color red

the formatting way
- right click on the cell
- choose format cells...
- choose custom
- add [Green] and [Red] so it looks something like this

[Green]0.00;[Red]0.00

i use the formatting way, its faster and takes less memory than
conditional formatting.
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 213
Default Using If then to change cell colors in Excel 2007

The 2 responses I've gotten doesn't solve my problem.. I want Excel to do
this automatically for me.. Right now I know how to highlight the range of
cells and change the font color.. but I don't want to have to do this
myself.. I want Excel to change the color as it needs to..
--
Randy


"Randy" wrote:

I'm creating a worksheet to calculate money.. If the amount is negative I
want Excel to display the number in 'Red'.. If Positive I want to have Excel
display the number in 'Green'.. I'm sure this can be done I just can't seem
to figure out how to accomplish this
--
Randy

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 276
Default Using If then to change cell colors in Excel 2007

Try:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("A1") < "" Then
If Range("A1") 0 Then
Range("A1").Select
Selection.Font.ColorIndex = 50
Else
Range("A1").Select
Selection.Font.ColorIndex = 3
End If
End If
End Sub

Corey....
"Randy" wrote in message
...
The 2 responses I've gotten doesn't solve my problem.. I want Excel to do
this automatically for me.. Right now I know how to highlight the range of
cells and change the font color.. but I don't want to have to do this
myself.. I want Excel to change the color as it needs to..
--
Randy


"Randy" wrote:

I'm creating a worksheet to calculate money.. If the amount is negative I
want Excel to display the number in 'Red'.. If Positive I want to have
Excel
display the number in 'Green'.. I'm sure this can be done I just can't
seem
to figure out how to accomplish this
--
Randy





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Using If then to change cell colors in Excel 2007

Why don't you try the suggestions you've had? You've had step-by-step
instructions as to how to apply either conditional formatting or custom
formatting. [If you can't find the Conditional Formatting button to which
pub referred, use Home/ Styles/ Conditional Formatting. Similarly Custom
Formatting can be found under Home/ Cells/ Format/ Format Cells]

If you are saying that you want Excel to change its behaviour without you
giving it any commands, then sadly it won't do that, because Excel doesn't
know what you are thinking, and it needs you to tell it what to do.

If you want the conditional formatting or custom formatting to apply to a
range which covers only part of your sheet, then select that range before
you apply the CF or custom formatting. If you want to apply it to the whole
sheet, select the whole sheet either by Control-A or by clicking in the
top-left square (above row 1 and to the left of column A). In either case,
the conditional formatting or custom formatting will apply the colouring to
the cells that meet the specified conditions, and not to those that don't.
(pub's example in custom formatting would have made a zero green, but you
can adjust the format to suit your own requirements, so perhaps
[Green]General;[Red]General;General )

What else did you want?
--
David Biddulph

"Randy" wrote in message
...
The 2 responses I've gotten doesn't solve my problem.. I want Excel to do
this automatically for me.. Right now I know how to highlight the range of
cells and change the font color.. but I don't want to have to do this
myself.. I want Excel to change the color as it needs to..
--
Randy


"Randy" wrote:

I'm creating a worksheet to calculate money.. If the amount is negative I
want Excel to display the number in 'Red'.. If Positive I want to have
Excel
display the number in 'Green'.. I'm sure this can be done I just can't
seem
to figure out how to accomplish this
--
Randy



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
excel 2007 colors do not match excel 2003 colors. Tom's Travails' Excel Discussion (Misc queries) 0 July 17th 08 01:56 AM
How do I change the 10 default text colors in Office 2007 tctwood Excel Discussion (Misc queries) 0 February 27th 08 12:47 AM
EXcel 2007 - Unable to sort by font and cell colors Mr. Low Excel Worksheet Functions 1 October 28th 06 03:49 PM
Cell fill colors in Excel change when copying to a new book jkbond67 Excel Discussion (Misc queries) 2 July 31st 06 09:47 PM
Can an excel cell automatically change fill colors based on values John Clark Excel Discussion (Misc queries) 1 February 5th 05 05:21 PM


All times are GMT +1. The time now is 05:50 AM.

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"