ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   conditional format (https://www.excelbanter.com/excel-discussion-misc-queries/51923-conditional-format.html)

TC

conditional format
 
I have a conditional formatting warning on some cells so that if the date in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless there is a *
on cell B10 ?

Thanks

--
Tobit



tina

conditional format
 
Hi
Try
=AND((TODAY()-B3)0,B10<"*")
Tina
"TC" wrote:

I have a conditional formatting warning on some cells so that if the date in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless there is a *
on cell B10 ?

Thanks

--
Tobit




TC

conditional format
 
Tina - works a treat - thank you.

OK, one step further. Can I use conditional formatting to turn the
background from red to green is there is a * in B10 - or is this sort of
multiple formats too much for it (using Excel97)

--
Tobit

"tina" wrote in message
...
Hi
Try
=AND((TODAY()-B3)0,B10<"*")
Tina
"TC" wrote:

I have a conditional formatting warning on some cells so that if the date
in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless there is a
*
on cell B10 ?

Thanks

--
Tobit






tina

conditional format
 
Hi TC
To do this you need to do one conditioning format for red then select add
button and conditioning 2 will appear and you can enter formula where
resulting formatting is green
=AND((TODAY()-B3)0,B10<"*") conditioning1 formula
=AND((TODAY()-B3)0,B10="*") conditioning2 formula
I presume this is available in excel97 as I am using excel2000
Tina



"TC" wrote:

Tina - works a treat - thank you.

OK, one step further. Can I use conditional formatting to turn the
background from red to green is there is a * in B10 - or is this sort of
multiple formats too much for it (using Excel97)

--
Tobit

"tina" wrote in message
...
Hi
Try
=AND((TODAY()-B3)0,B10<"*")
Tina
"TC" wrote:

I have a conditional formatting warning on some cells so that if the date
in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless there is a
*
on cell B10 ?

Thanks

--
Tobit







TC

conditional format
 
Tina - your a star- many thanks

Tobit

Hi TC
To do this you need to do one conditioning format for red then select
add
button and conditioning 2 will appear and you can enter formula where
resulting formatting is green
=AND((TODAY()-B3)0,B10<"*") conditioning1 formula
=AND((TODAY()-B3)0,B10="*") conditioning2 formula
I presume this is available in excel97 as I am using excel2000
Tina



"TC" wrote:

Tina - works a treat - thank you.

OK, one step further. Can I use conditional formatting to turn the
background from red to green is there is a * in B10 - or is this sort of
multiple formats too much for it (using Excel97)

--
Tobit

"tina" wrote in message
...
Hi
Try
=AND((TODAY()-B3)0,B10<"*")
Tina
"TC" wrote:

I have a conditional formatting warning on some cells so that if the
date
in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless there is
a
*
on cell B10 ?

Thanks

--
Tobit









DONNA

conditional format
 
Tina I have a problem and NEED HELP IMMEDIATELY. I would sincerely
appreciate your any help you can give me.

I am creating this spreadsheet. That shows dates for:
1. Completed on time (yellow)
2. Completed ahead of target date (green)
3. Past Target Date (red)
I NEED THE "COMPLETION DATE" column NOT to turn ANY color if there is no
date in the column AND TO Turn a color (yellow, green, red) if there is a
date in the "completion date" column.

It seems to me that I am needing 4 conditioning formatting:
PLEASE HELP AND TELL ME WHAT THE FORMULAS COULD BE.

"TC" wrote:

Tina - your a star- many thanks

Tobit

Hi TC
To do this you need to do one conditioning format for red then select
add
button and conditioning 2 will appear and you can enter formula where
resulting formatting is green
=AND((TODAY()-B3)0,B10<"*") conditioning1 formula
=AND((TODAY()-B3)0,B10="*") conditioning2 formula
I presume this is available in excel97 as I am using excel2000
Tina



"TC" wrote:

Tina - works a treat - thank you.

OK, one step further. Can I use conditional formatting to turn the
background from red to green is there is a * in B10 - or is this sort of
multiple formats too much for it (using Excel97)

--
Tobit

"tina" wrote in message
...
Hi
Try
=AND((TODAY()-B3)0,B10<"*")
Tina
"TC" wrote:

I have a conditional formatting warning on some cells so that if the
date
in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless there is
a
*
on cell B10 ?

Thanks

--
Tobit










Ragdyer

conditional format
 
Would you accept a suggestion from someone other then Tina?

Let's say that the completion date column is G, and the target date column
is D.
Data of concern is in G2 to G50 and D2 to D50.

Select G2 to G50, with the focus in G2 (colored white), then:
<Format <ConditionalFormat
Change "Cell Value Is" to "Formula Is",
And enter this formula in the window:

=AND(G2<"",G2=D2)

Then click on <Format, and choose a yellow format (font or pattern),
Then <OK.

Then click on <Add for your second condition.

Again change "Cell Value Is" to "Formula Is",
And enter this formula in the window:

=AND(ISNUMBER(G2),G2<"",G2D2)

Then click on <Format, and choose a red format (font or pattern),
Then <OK.

Then click on <Add again for your third condition.

Again change "Cell Value Is" to "Formula Is",
And enter this formula in the window:

=AND(G2<"",G2<D2)

Then click on <Format, and choose a green format (font or pattern),
Then <OK <OK.

So, you now have set your 3 conditions to color the cells when Column G is
not empty, and when Column G does not contain text.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------

"DONNA" wrote in message
...
Tina I have a problem and NEED HELP IMMEDIATELY. I would sincerely
appreciate your any help you can give me.

I am creating this spreadsheet. That shows dates for:
1. Completed on time (yellow)
2. Completed ahead of target date (green)
3. Past Target Date (red)
I NEED THE "COMPLETION DATE" column NOT to turn ANY color if there is no
date in the column AND TO Turn a color (yellow, green, red) if there is a
date in the "completion date" column.

It seems to me that I am needing 4 conditioning formatting:
PLEASE HELP AND TELL ME WHAT THE FORMULAS COULD BE.

"TC" wrote:

Tina - your a star- many thanks

Tobit

Hi TC
To do this you need to do one conditioning format for red then select
add
button and conditioning 2 will appear and you can enter formula where
resulting formatting is green
=AND((TODAY()-B3)0,B10<"*") conditioning1 formula
=AND((TODAY()-B3)0,B10="*") conditioning2 formula
I presume this is available in excel97 as I am using excel2000
Tina



"TC" wrote:

Tina - works a treat - thank you.

OK, one step further. Can I use conditional formatting to turn the
background from red to green is there is a * in B10 - or is this sort

of
multiple formats too much for it (using Excel97)

--
Tobit

"tina" wrote in message
...
Hi
Try
=AND((TODAY()-B3)0,B10<"*")
Tina
"TC" wrote:

I have a conditional formatting warning on some cells so that if

the
date
in
B3 is older than today the background goes red

Formula is = (TODAY()-B3)0

How would I write this so that the action is to go red unless

there is
a
*
on cell B10 ?

Thanks

--
Tobit












All times are GMT +1. The time now is 01:32 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com