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

Once I have my conditional formatting set for an entire row, is there any way
to fill down the rows on the rest of the spreadsheet like you would a formula
typed directly into a cell? I've tried filling down, and I think each row is
refencing the cells in the original row instead of the appropriate cell in
it's own row. (Excel 2003)

Is is possible, or do I have to set the conditional formulas for each row
individually?

Thanks...
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default "Fill" Conditional Formatting?

You can copy down ... just like a regular formula ... and just like a
regular formula, you'll need to use relative references in place of absolute
($) references where necessary.

You might post your formulas if you still have a problem.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Deanna" wrote in message
...
Once I have my conditional formatting set for an entire row, is there any
way
to fill down the rows on the rest of the spreadsheet like you would a
formula
typed directly into a cell? I've tried filling down, and I think each row
is
refencing the cells in the original row instead of the appropriate cell in
it's own row. (Excel 2003)

Is is possible, or do I have to set the conditional formulas for each row
individually?

Thanks...



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 199
Default "Fill" Conditional Formatting?

"RagDyer" wrote in message
...
You can copy down ... just like a regular formula ... and just like a
regular formula, you'll need to use relative references in place of
absolute ($) references where necessary.


You can also use the format painter by clicking at the end of your set row,
and then dragging it down the rows you want to format. Try one row first to
ensure you have the correct relative vs. absolute references in the
conditional formatting.

V

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default "Fill" Conditional Formatting?

Thanks to you both, I removed the $ where appropriate, and it's working, for
the most part.

I was able to fill down a single cell through the remainder of the column
and it worked beautifully. Where I'm still having trouble is filling down
for an entire row.

I highlighted the cells in the row I wanted the conditional formatting to
apply to, and here are the two conditions I wrote:

Formula Is =AND(ISBLANK(H12),$G$2G12)
I do want the absolute reference to G2, as that is a date entry that
will change to affect the results I'm looking for. A TRUE statement will
highlight the entire row yellow to indicate it's an overdue item as there is
no completion date entered (H12 is blank) and the target due date (G12) is
past today's date ($G$2).

Formula Is =ISTEXT(H12)
I want the row to highlight green to indicate there is a completion
date entered in H12, and it is now a closed item.

What isn't working is that the entire row isn't highlighting...two cells are
staying clear when the item is overdue, and one cell is staying clear when
the item is completed.

Also, when I try to fill down the formatting, it's filling down the text of
the cells...should I use format painter in this instance, as I'm changing a
spreadsheet that's already in common use and can't (and don't want to!!!)
necessarily start from scratch on the data entry.


"RagDyer" wrote:

You can copy down ... just like a regular formula ... and just like a
regular formula, you'll need to use relative references in place of absolute
($) references where necessary.

You might post your formulas if you still have a problem.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Deanna" wrote in message
...
Once I have my conditional formatting set for an entire row, is there any
way
to fill down the rows on the rest of the spreadsheet like you would a
formula
typed directly into a cell? I've tried filling down, and I think each row
is
refencing the cells in the original row instead of the appropriate cell in
it's own row. (Excel 2003)

Is is possible, or do I have to set the conditional formulas for each row
individually?

Thanks...




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default "Fill" Conditional Formatting?

Don't forget what I originally stated in my first post,
these CF formulas are like regular formulas (except for circular
references),
so you *will need* absolutes in some situations.

When you attempt to copy the CF across columns, along a row, you'll need the
column references to be absolute.

ALSO, your use of Istext() to evaluate a date entry is not the wisest
function to use.
If dates are entered as 7/28/09, XL treats it as a *number*, and will return
FALSE, therefore not invoking the CF for those cells.
If there is a possibility that the date *might* be entered as text
(July-22-),
then this formula should cover both cases:

=$H12<""

AND, for your first condition, use:

=AND(ISBLANK($H12),$G$2$G12)

Finally, if you already have data in those cells you're looking to use CF
on,
*DO* use the "Format Painter".

As a hint, *double* clicking on the "Format Painter" icon will keep it
active through multiple mouse clicks.
Don't forget to hit <Esc to turn it off, or you could make a real mess of
your sheet!
--

HTH,

RD
================================================== ===
Please keep all correspondence within the Group, so all may benefit!
================================================== ===



"Deanna" wrote in message
...
Thanks to you both, I removed the $ where appropriate, and it's working, for
the most part.

I was able to fill down a single cell through the remainder of the column
and it worked beautifully. Where I'm still having trouble is filling down
for an entire row.

I highlighted the cells in the row I wanted the conditional formatting to
apply to, and here are the two conditions I wrote:

Formula Is =AND(ISBLANK(H12),$G$2G12)
I do want the absolute reference to G2, as that is a date entry that
will change to affect the results I'm looking for. A TRUE statement will
highlight the entire row yellow to indicate it's an overdue item as there is
no completion date entered (H12 is blank) and the target due date (G12) is
past today's date ($G$2).

Formula Is =ISTEXT(H12)
I want the row to highlight green to indicate there is a completion
date entered in H12, and it is now a closed item.

What isn't working is that the entire row isn't highlighting...two cells are
staying clear when the item is overdue, and one cell is staying clear when
the item is completed.

Also, when I try to fill down the formatting, it's filling down the text of
the cells...should I use format painter in this instance, as I'm changing a
spreadsheet that's already in common use and can't (and don't want to!!!)
necessarily start from scratch on the data entry.


"RagDyer" wrote:

You can copy down ... just like a regular formula ... and just like a
regular formula, you'll need to use relative references in place of
absolute
($) references where necessary.

You might post your formulas if you still have a problem.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Deanna" wrote in message
...
Once I have my conditional formatting set for an entire row, is there
any
way
to fill down the rows on the rest of the spreadsheet like you would a
formula
typed directly into a cell? I've tried filling down, and I think each
row
is
refencing the cells in the original row instead of the appropriate cell
in
it's own row. (Excel 2003)

Is is possible, or do I have to set the conditional formulas for each
row
individually?

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 on "Any Text" entered in a cell Chris Mather Excel Discussion (Misc queries) 5 April 3rd 23 01:11 PM
Excel 2003: Conditional Formatting using "MIN" & "MAX" function MMangen Excel Discussion (Misc queries) 2 September 16th 08 07:13 PM
Use of CELL("protect") in conditional formatting in Excel 07 Mark Excel Worksheet Functions 3 August 26th 08 06:13 AM
"Type mismatch" when I try to fill an Array variable with "+" [email protected] Excel Discussion (Misc queries) 1 April 17th 07 01:28 PM
conditional formatting "if part of cell contents contains string" tom ossieur Excel Worksheet Functions 1 March 13th 07 11:11 AM


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