#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 65
Default Closing dates

We have a spreadsheet with closing dates on it. We'd like the closing date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row, we'd like
the first field to revert to its original colour.

Can anyone help please?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Closing dates

Use conditional formatting with a formula of

=AND(B2="",A2<TODAY())

where A2 is the closing date, B2 is the other field.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"bollard" wrote in message
...
We have a spreadsheet with closing dates on it. We'd like the closing date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row, we'd like
the first field to revert to its original colour.

Can anyone help please?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 65
Default Closing dates

Hi Bob

Thanks for that, it works a treat.

Only thing is, if the closing date field is empty, then the field also turns
red. Is there a way around this, so that the field only turns red if there is
a closing date and it has expired?

Thanks.

"Bob Phillips" wrote:

Use conditional formatting with a formula of

=AND(B2="",A2<TODAY())

where A2 is the closing date, B2 is the other field.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"bollard" wrote in message
...
We have a spreadsheet with closing dates on it. We'd like the closing date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row, we'd like
the first field to revert to its original colour.

Can anyone help please?




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Closing dates

=AND(A2<"",B2="",A2<TODAY())


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"bollard" wrote in message
...
Hi Bob

Thanks for that, it works a treat.

Only thing is, if the closing date field is empty, then the field also
turns
red. Is there a way around this, so that the field only turns red if there
is
a closing date and it has expired?

Thanks.

"Bob Phillips" wrote:

Use conditional formatting with a formula of

=AND(B2="",A2<TODAY())

where A2 is the closing date, B2 is the other field.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"bollard" wrote in message
...
We have a spreadsheet with closing dates on it. We'd like the closing
date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row, we'd
like
the first field to revert to its original colour.

Can anyone help please?






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 65
Default Closing dates

Thanks Bob.

Now that really has done the trick. many thanks.

I've got another similar problem now:

We have a person's name coloured according to the month they start work.
We'd like that colour to revert to pale grey once we enter a date in another
field on the same row.

This sounds like the same issue, but I tried using one of your earlier
formulae and that doesn't do it.

Thanks.

"Bob Phillips" wrote:

=AND(A2<"",B2="",A2<TODAY())


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"bollard" wrote in message
...
Hi Bob

Thanks for that, it works a treat.

Only thing is, if the closing date field is empty, then the field also
turns
red. Is there a way around this, so that the field only turns red if there
is
a closing date and it has expired?

Thanks.

"Bob Phillips" wrote:

Use conditional formatting with a formula of

=AND(B2="",A2<TODAY())

where A2 is the closing date, B2 is the other field.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"bollard" wrote in message
...
We have a spreadsheet with closing dates on it. We'd like the closing
date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row, we'd
like
the first field to revert to its original colour.

Can anyone help please?








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Closing dates

I assume that you use normal cell colouring for the month colouring, as CF
cannot support 12?

So just add a CF formula of

=J2<""

as an example, and format as grey

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"bollard" wrote in message
...
Thanks Bob.

Now that really has done the trick. many thanks.

I've got another similar problem now:

We have a person's name coloured according to the month they start work.
We'd like that colour to revert to pale grey once we enter a date in
another
field on the same row.

This sounds like the same issue, but I tried using one of your earlier
formulae and that doesn't do it.

Thanks.

"Bob Phillips" wrote:

=AND(A2<"",B2="",A2<TODAY())


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"bollard" wrote in message
...
Hi Bob

Thanks for that, it works a treat.

Only thing is, if the closing date field is empty, then the field also
turns
red. Is there a way around this, so that the field only turns red if
there
is
a closing date and it has expired?

Thanks.

"Bob Phillips" wrote:

Use conditional formatting with a formula of

=AND(B2="",A2<TODAY())

where A2 is the closing date, B2 is the other field.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"bollard" wrote in message
...
We have a spreadsheet with closing dates on it. We'd like the
closing
date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row,
we'd
like
the first field to revert to its original colour.

Can anyone help please?








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 65
Default Closing dates

Hi Bob

Many thanks for that.

"Bob Phillips" wrote:

I assume that you use normal cell colouring for the month colouring, as CF
cannot support 12?

So just add a CF formula of

=J2<""

as an example, and format as grey

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"bollard" wrote in message
...
Thanks Bob.

Now that really has done the trick. many thanks.

I've got another similar problem now:

We have a person's name coloured according to the month they start work.
We'd like that colour to revert to pale grey once we enter a date in
another
field on the same row.

This sounds like the same issue, but I tried using one of your earlier
formulae and that doesn't do it.

Thanks.

"Bob Phillips" wrote:

=AND(A2<"",B2="",A2<TODAY())


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"bollard" wrote in message
...
Hi Bob

Thanks for that, it works a treat.

Only thing is, if the closing date field is empty, then the field also
turns
red. Is there a way around this, so that the field only turns red if
there
is
a closing date and it has expired?

Thanks.

"Bob Phillips" wrote:

Use conditional formatting with a formula of

=AND(B2="",A2<TODAY())

where A2 is the closing date, B2 is the other field.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"bollard" wrote in message
...
We have a spreadsheet with closing dates on it. We'd like the
closing
date
field's pattern to turn red when today after the closing date.

BUT, once a date is input into another field along the same row,
we'd
like
the first field to revert to its original colour.

Can anyone help please?









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
Pop up message at closing chanwando Excel Discussion (Misc queries) 2 September 9th 05 10:04 PM
Closing MSExcel sosjoan Excel Discussion (Misc queries) 1 June 11th 05 06:38 PM
Help with closing down a workbook?? Don Excel Worksheet Functions 1 May 9th 05 04:05 AM
Closing Excel Diane Excel Discussion (Misc queries) 2 March 24th 05 07:27 PM
Closing Excel Chad Excel Discussion (Misc queries) 2 March 18th 05 03:57 PM


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