Hi Brett,
Changing the column letter to an absolute with the $ sign
makes the other cells on that row low to that cell as you=
asked for.
Which cells can be get coloring is based on the selection.
The formula itself is based on the active cell. Each cell in
the selection will be tested and uses 1 of the 3 conditions
per cell that you are allowed in C.F.
Therefore, you would make the column portions absolute
in your C.F. formula, when you want to color by rows.
Supose you want to conditionally format cell D2
C.F. Formula 1: =D2>0 with select cell D2 selected
Suppose you want to Conditional format all of row 2 if D2 > 0
Select the entire row 2
C.F. Formula 1: =$D2>0
Suppose you want to Conditionally format all rows where
Column D is greater than 0
Select Cell D1 to be the active cell
Select All Cells Ctrl+A, with D1 still the active cell
acually any cell on row 1 can be the active cell
C.F. Formula 1: =$D1>0
If you may have text in column D then change the formula to
C.F. Formula 1: =AND($D1>0,ISNUMBER($D1))
The cells to be colored are based on the selection
All cells in the selection are based on the C.F.
so all cells on row1 are checking cell $D1
all cells on row2 are checking cell $D2
etc. etc.
and all cells in the worksheet have used up of of
the 3 C.F. conditions allowed.
For more information on Condiditonal Formatting se
http://www.mvps.org/dmcritchie/excel/condfmt.htm
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
Perfect. How can I have that entire row highlight? Some of the other
cells on that row are currency, text and number values. If the one
particular cell's value is greater than 0, I want the entire row to
bold or at least the ones I'm using on that row. I need a way to tell
the other cells to look at the one cell rather than themselves, which
is all the conditional format will let me do.