Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default HELP - Conditional Formatting Dates & Blank Cells

I have two columns of data:
Column A (Current Review Date) Column B (Next Review Date (2 years out)
I want to conditionally format so that the reviews due within 30 days of
today are highlighted and the reviews overdue are also highlighted but that
cells containing no date remain unchanged. I have tried multiple variations
of the Today +30 and the =AND(B1<"",B1<TODAY()) formulas with no success.
SEE BELOW:
Example Data:
Column A Column B
1. 9/1/05 9/1/07 (This would appear in RED)
2. 10/1/05 10/1/07 (This would appear in GREEN)
3. blank blank (This would be unaffected by the conditional format)
4. 1/5/06 1/5/08

PLEASE HELP!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default HELP - Conditional Formatting Dates & Blank Cells

=AND(B1<"",B1=TODAY(),B1<=TODAY()+30)

should do the first

--
HTH

Bob

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

"Diane1477" wrote in message
...
I have two columns of data:
Column A (Current Review Date) Column B (Next Review Date (2 years out)
I want to conditionally format so that the reviews due within 30 days of
today are highlighted and the reviews overdue are also highlighted but
that
cells containing no date remain unchanged. I have tried multiple
variations
of the Today +30 and the =AND(B1<"",B1<TODAY()) formulas with no
success.
SEE BELOW:
Example Data:
Column A Column B
1. 9/1/05 9/1/07 (This would appear in RED)
2. 10/1/05 10/1/07 (This would appear in GREEN)
3. blank blank (This would be unaffected by the conditional
format)
4. 1/5/06 1/5/08

PLEASE HELP!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default HELP - Conditional Formatting Dates & Blank Cells

I used 'Formula is' and pasted what you wrote below and it did not work. Any
other ideas?

I am thorougly frustrated.

"Bob Phillips" wrote:

=AND(B1<"",B1=TODAY(),B1<=TODAY()+30)

should do the first

--
HTH

Bob

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

"Diane1477" wrote in message
...
I have two columns of data:
Column A (Current Review Date) Column B (Next Review Date (2 years out)
I want to conditionally format so that the reviews due within 30 days of
today are highlighted and the reviews overdue are also highlighted but
that
cells containing no date remain unchanged. I have tried multiple
variations
of the Today +30 and the =AND(B1<"",B1<TODAY()) formulas with no
success.
SEE BELOW:
Example Data:
Column A Column B
1. 9/1/05 9/1/07 (This would appear in RED)
2. 10/1/05 10/1/07 (This would appear in GREEN)
3. blank blank (This would be unaffected by the conditional
format)
4. 1/5/06 1/5/08

PLEASE HELP!




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 70
Default HELP - Conditional Formatting Dates & Blank Cells

Diane,
Instead of "Formula is", try "Cell Value is" option in the same drop down
list and use the following:

condition 1: less than =Today()
(Format: Font Bold, Color Red)
condition 2: between =Today() and =Today()+30
(Format: Font Bold, Color Green)

Pl tell me whether I have understood your requirement correctly.

Balan
"Diane1477" wrote:

I used 'Formula is' and pasted what you wrote below and it did not work. Any
other ideas?

I am thorougly frustrated.

"Bob Phillips" wrote:

=AND(B1<"",B1=TODAY(),B1<=TODAY()+30)

should do the first

--
HTH

Bob

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

"Diane1477" wrote in message
...
I have two columns of data:
Column A (Current Review Date) Column B (Next Review Date (2 years out)
I want to conditionally format so that the reviews due within 30 days of
today are highlighted and the reviews overdue are also highlighted but
that
cells containing no date remain unchanged. I have tried multiple
variations
of the Today +30 and the =AND(B1<"",B1<TODAY()) formulas with no
success.
SEE BELOW:
Example Data:
Column A Column B
1. 9/1/05 9/1/07 (This would appear in RED)
2. 10/1/05 10/1/07 (This would appear in GREEN)
3. blank blank (This would be unaffected by the conditional
format)
4. 1/5/06 1/5/08

PLEASE HELP!




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default HELP - Conditional Formatting Dates & Blank Cells

What does 'did not work' mean exactly?

--
HTH

Bob

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

"Diane1477" wrote in message
...
I used 'Formula is' and pasted what you wrote below and it did not work.
Any
other ideas?

I am thorougly frustrated.

"Bob Phillips" wrote:

=AND(B1<"",B1=TODAY(),B1<=TODAY()+30)

should do the first

--
HTH

Bob

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

"Diane1477" wrote in message
...
I have two columns of data:
Column A (Current Review Date) Column B (Next Review Date (2 years out)
I want to conditionally format so that the reviews due within 30 days
of
today are highlighted and the reviews overdue are also highlighted but
that
cells containing no date remain unchanged. I have tried multiple
variations
of the Today +30 and the =AND(B1<"",B1<TODAY()) formulas with no
success.
SEE BELOW:
Example Data:
Column A Column B
1. 9/1/05 9/1/07 (This would appear in RED)
2. 10/1/05 10/1/07 (This would appear in GREEN)
3. blank blank (This would be unaffected by the conditional
format)
4. 1/5/06 1/5/08

PLEASE HELP!








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default HELP - Conditional Formatting Dates & Blank Cells

I wanted to post what finally worked...and elimated the formatting of blank
cells (that was what was not working when I tried the originally sugested
solution)

Condition 1: cell value is: ="" (No format set)
Condition 2: formula is: =DAYS360(S3,TODAY())0 (Format Fill Red & Bold)
Condtion 3: cell value is: =TODAY()+60 (Format Green)

Thanks to both of you for your help!!
"Balan" wrote:

Diane,
Instead of "Formula is", try "Cell Value is" option in the same drop down
list and use the following:

condition 1: less than =Today()
(Format: Font Bold, Color Red)
condition 2: between =Today() and =Today()+30
(Format: Font Bold, Color Green)

Pl tell me whether I have understood your requirement correctly.

Balan
"Diane1477" wrote:

I used 'Formula is' and pasted what you wrote below and it did not work. Any
other ideas?

I am thorougly frustrated.

"Bob Phillips" wrote:

=AND(B1<"",B1=TODAY(),B1<=TODAY()+30)

should do the first

--
HTH

Bob

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

"Diane1477" wrote in message
...
I have two columns of data:
Column A (Current Review Date) Column B (Next Review Date (2 years out)
I want to conditionally format so that the reviews due within 30 days of
today are highlighted and the reviews overdue are also highlighted but
that
cells containing no date remain unchanged. I have tried multiple
variations
of the Today +30 and the =AND(B1<"",B1<TODAY()) formulas with no
success.
SEE BELOW:
Example Data:
Column A Column B
1. 9/1/05 9/1/07 (This would appear in RED)
2. 10/1/05 10/1/07 (This would appear in GREEN)
3. blank blank (This would be unaffected by the conditional
format)
4. 1/5/06 1/5/08

PLEASE HELP!



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: format when range of cells are blank ChadBellan Excel Discussion (Misc queries) 1 May 25th 07 06:24 PM
Conditional Formatting - allowing for Blank Cells Hojo Excel Discussion (Misc queries) 2 January 24th 07 11:10 PM
Is conditional formatting only blank, unused cells possible? Cond. formatting blank cells Excel Worksheet Functions 1 May 16th 06 01:55 PM
using conditional formatting - blank cells SD Excel Discussion (Misc queries) 5 May 9th 06 03:22 PM
Conditional formatting blank cells kalz Excel Discussion (Misc queries) 2 August 12th 05 03:57 AM


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