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 Date Turns Green 90-Days before the date shown in cell

The cell fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.

I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok

What is happening is the date is turning green if it is before the date shown

--
AjaminB
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,344
Default Date Turns Green 90-Days before the date shown in cell

Hi,

You want the font to turn green but the fill to be black?

if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.

--
Thanks,
Shane Devenshire


"ajaminb" wrote:

The cell fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.

I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok

What is happening is the date is turning green if it is before the date shown

--
AjaminB

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Date Turns Green 90-Days before the date shown in cell

I tested this and it isn't working. How I tested was by putting a date of
12/30/08 in the field. Today is 9/28/08. I start ticking of a day at a time
and when I get to 12/27/08 it turns green. If I go to 6/27/08 it is still
green. Am I missing something?
--
AjaminB


"ShaneDevenshire" wrote:

Hi,

You want the font to turn green but the fill to be black?

if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.

--
Thanks,
Shane Devenshire


"ajaminb" wrote:

The cell fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.

I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok

What is happening is the date is turning green if it is before the date shown

--
AjaminB

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 747
Default Date Turns Green 90-Days before the date shown in cell

try this

condition 2 - | =DATEDIF(TODAY(),B1,"D")=90



On Sep 28, 10:50*pm, ajaminb wrote:
I tested this and it isn't working. How I tested was by putting a date of
12/30/08 in the field. *Today is 9/28/08. *I start ticking of a day at a time
and when I get to 12/27/08 it turns green. *If I go to 6/27/08 it is still
green. *Am I missing something?
--
AjaminB

"ShaneDevenshire" wrote:
Hi,


You want the font to turn green but the fill to be black?


if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.


--
Thanks,
Shane Devenshire


"ajaminb" wrote:


The cell *fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.


I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok


What is happening is the date is turning green if it is before the date shown


--
AjaminB


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Date Turns Green 90-Days before the date shown in cell

I have applied this and it still is not working. I really appreciate the
assistance because if I can achieve this I will have a tool that will help me
out immensely.

The application is: I have an Excel spread sheet with a column of
expiration dates. I have the column with a "BLACK" fill and the font is
"White". I need all dates to be white and to turn green 90-days before the
entered date and red once the date has passed. You helped me with the red
part and it is working well. If I go back 91 days before the expiration of
the date, it should be white.

I really appreciate this.
--
AjaminB


"muddan madhu" wrote:

try this

condition 2 - | =DATEDIF(TODAY(),B1,"D")=90



On Sep 28, 10:50 pm, ajaminb wrote:
I tested this and it isn't working. How I tested was by putting a date of
12/30/08 in the field. Today is 9/28/08. I start ticking of a day at a time
and when I get to 12/27/08 it turns green. If I go to 6/27/08 it is still
green. Am I missing something?
--
AjaminB

"ShaneDevenshire" wrote:
Hi,


You want the font to turn green but the fill to be black?


if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.


--
Thanks,
Shane Devenshire


"ajaminb" wrote:


The cell fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.


I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok


What is happening is the date is turning green if it is before the date shown


--
AjaminB





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 747
Default Date Turns Green 90-Days before the date shown in cell

is this what u are looking for ?

suppose B1 is your expiration date -
if the expiration date is 28-dec-2008 so it has 90 dates from today
(i.e., from 28-sep-2008 to 28-dec-2008)
in this case the cell font will be in green and fill should be black ?
if it is more than 90 days or less then 90 days then cell font in
white and fille should be black ?





On Sep 28, 11:46*pm, ajaminb wrote:
I have applied this and it still is not working. *I really appreciate the
assistance because if I can achieve this I will have a tool that will help me
out immensely.

The application is: *I have an Excel spread sheet with a column of
expiration dates. I have the column with a "BLACK" fill and the font is
"White". I need all dates to be white and to turn green 90-days before the
entered date and red once the date has passed. *You helped me with the red
part and it is working well. *If I go back 91 days before the expiration of
the date, it should be white.

I really appreciate this.
--
AjaminB

"muddan madhu" wrote:
try this


condition 2 - | =DATEDIF(TODAY(),B1,"D")=90


On Sep 28, 10:50 pm, ajaminb wrote:
I tested this and it isn't working. How I tested was by putting a date of
12/30/08 in the field. *Today is 9/28/08. *I start ticking of a day at a time
and when I get to 12/27/08 it turns green. *If I go to 6/27/08 it is still
green. *Am I missing something?
--
AjaminB


"ShaneDevenshire" wrote:
Hi,


You want the font to turn green but the fill to be black?


if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.


--
Thanks,
Shane Devenshire


"ajaminb" wrote:


The cell *fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.


I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok


What is happening is the date is turning green if it is before the date shown


--
AjaminB


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Date Turns Green 90-Days before the date shown in cell

Is it possible that one of your dates really isn't a date? In an adjacent
column, put this

=TEXT(A1)

where A1 is the cell with the date. If you get TRUE, that's at least part
of your problem.
--
HTH,
Barb Reinhardt

If this post was helpful to you, please click YES below.



"ajaminb" wrote:

I have applied this and it still is not working. I really appreciate the
assistance because if I can achieve this I will have a tool that will help me
out immensely.

The application is: I have an Excel spread sheet with a column of
expiration dates. I have the column with a "BLACK" fill and the font is
"White". I need all dates to be white and to turn green 90-days before the
entered date and red once the date has passed. You helped me with the red
part and it is working well. If I go back 91 days before the expiration of
the date, it should be white.

I really appreciate this.
--
AjaminB


"muddan madhu" wrote:

try this

condition 2 - | =DATEDIF(TODAY(),B1,"D")=90



On Sep 28, 10:50 pm, ajaminb wrote:
I tested this and it isn't working. How I tested was by putting a date of
12/30/08 in the field. Today is 9/28/08. I start ticking of a day at a time
and when I get to 12/27/08 it turns green. If I go to 6/27/08 it is still
green. Am I missing something?
--
AjaminB

"ShaneDevenshire" wrote:
Hi,

You want the font to turn green but the fill to be black?

if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.

--
Thanks,
Shane Devenshire

"ajaminb" wrote:

The cell fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.

I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok

What is happening is the date is turning green if it is before the date shown

--
AjaminB



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Date Turns Green 90-Days before the date shown in cell

Yes, with regard to the Green and the Sept 28 2008 - Dec 28, 2008.

Once the date expires, I'm having it turn red, and you showed me how to do
this.

Thank you,
--
AjaminB


"muddan madhu" wrote:

is this what u are looking for ?

suppose B1 is your expiration date -
if the expiration date is 28-dec-2008 so it has 90 dates from today
(i.e., from 28-sep-2008 to 28-dec-2008)
in this case the cell font will be in green and fill should be black ?
if it is more than 90 days or less then 90 days then cell font in
white and fille should be black ?





On Sep 28, 11:46 pm, ajaminb wrote:
I have applied this and it still is not working. I really appreciate the
assistance because if I can achieve this I will have a tool that will help me
out immensely.

The application is: I have an Excel spread sheet with a column of
expiration dates. I have the column with a "BLACK" fill and the font is
"White". I need all dates to be white and to turn green 90-days before the
entered date and red once the date has passed. You helped me with the red
part and it is working well. If I go back 91 days before the expiration of
the date, it should be white.

I really appreciate this.
--
AjaminB

"muddan madhu" wrote:
try this


condition 2 - | =DATEDIF(TODAY(),B1,"D")=90


On Sep 28, 10:50 pm, ajaminb wrote:
I tested this and it isn't working. How I tested was by putting a date of
12/30/08 in the field. Today is 9/28/08. I start ticking of a day at a time
and when I get to 12/27/08 it turns green. If I go to 6/27/08 it is still
green. Am I missing something?
--
AjaminB


"ShaneDevenshire" wrote:
Hi,


You want the font to turn green but the fill to be black?


if so,
1. Select the range of dates
2. Choose Format, Conditional Formatting, and in second box choose less than
or equal to and in the third box enter =TODAY()+90
3. Click Format
4. On the Font tab under Color choose Green.


--
Thanks,
Shane Devenshire


"ajaminb" wrote:


The cell fill color is black and the font is white, if the date show is long
before it expires I want it to remain white, at 90-days before the date
shown, it turns green.


I have tried this and I don't get the desired result as express above:
Select the col B | go to format | conditional formatting | condition 2 -
formula
is =B1(TODAY()-90) | color is picked | and close with, ok


What is happening is the date is turning green if it is before the date shown


--
AjaminB



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
Adding days to a date cell to get a new date Pete Derkowski Excel Worksheet Functions 6 May 1st 08 03:53 PM
Report Date - Date Recv = Days Late, but how to rid completed date MS Questionnairess Excel Worksheet Functions 1 January 24th 07 11:05 PM
Apply green to current date, red to 2 days overdue and none if pai vpschas Excel Worksheet Functions 16 September 7th 06 02:35 PM
WHAT FUNCTION 2 ENTER SO THE CELL TURNS RED AFTER CURRENT DATE awilliams Excel Worksheet Functions 4 June 1st 06 09:40 PM
formula to calculate future date from date in cell plus days Chicesq Excel Worksheet Functions 8 November 3rd 05 12:25 PM


All times are GMT +1. The time now is 07:49 AM.

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"