Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Formula to show a date in red if /= 365 days old in Excel?

I keep a log of dates that people receive financial assistance which is in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change the
text to red. I would like to find a formula that would do this for me.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Formula to show a date in red if /= 365 days old in Excel?

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change the
text to red. I would like to find a formula that would do this for me.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Formula to show a date in red if /= 365 days old in Excel?

I looked at conditional formatting and it showed true and false rather than
changing the text color. I am not sure how to do that part. I still want it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change the
text to red. I would like to find a formula that would do this for me.




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Formula to show a date in red if /= 365 days old in Excel?

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather than
changing the text color. I am not sure how to do that part. I still want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is
in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change
the
text to red. I would like to find a formula that would do this for me.






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Formula to show a date in red if /= 365 days old in Excel?

I must have been looking at something else for the true & false. Thanks.

In conditional formatting, I put if the cell is greater than or equal to
="today-365", then in the formatting I made the font red. It did not work
but, I am stuggling with how to phrasing it correctly. Thanks in advance for
your help.

"David Biddulph" wrote:

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather than
changing the text color. I am not sure how to do that part. I still want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is
in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change
the
text to red. I would like to find a formula that would do this for me.








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Formula to show a date in red if /= 365 days old in Excel?

You don't want the quote marks around "today-365" as that makes it look for
the text string "today-365".
Also, if you look in Excel help for the TODAY function you'll see that the
syntax is TODAY(), and the parentheses are an essential part of the syntax.
So try replacing ="today-365" by =TODAY()-365
--
David Biddulph

"bmcaf12345" wrote in message
...
I must have been looking at something else for the true & false. Thanks.

In conditional formatting, I put if the cell is greater than or equal to
="today-365", then in the formatting I made the font red. It did not work
but, I am stuggling with how to phrasing it correctly. Thanks in advance
for
your help.

"David Biddulph" wrote:

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather
than
changing the text color. I am not sure how to do that part. I still
want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which
is
in
effect for 365 days. After 365 days they must renew their
application.
Currently, I manually look for dates that are 365 days old and
change
the
text to red. I would like to find a formula that would do this for
me.








  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Formula to show a date in red if /= 365 days old in Excel?

All functions, including those that have no parameter, need parentheses.
When you want today's date, you must use =Today(). Also, ditch the quotes
(they designate you have text, not a formula). Try:

=today()-365

Regards,
Fred.

"bmcaf12345" wrote in message
...
I must have been looking at something else for the true & false. Thanks.

In conditional formatting, I put if the cell is greater than or equal to
="today-365", then in the formatting I made the font red. It did not work
but, I am stuggling with how to phrasing it correctly. Thanks in advance
for
your help.

"David Biddulph" wrote:

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather
than
changing the text color. I am not sure how to do that part. I still
want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which
is
in
effect for 365 days. After 365 days they must renew their
application.
Currently, I manually look for dates that are 365 days old and
change
the
text to red. I would like to find a formula that would do this for
me.







  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Formula to show a date in red if /= 365 days old in Excel?

You're close. try this

=today()-365
--
HTH,
Barb Reinhardt

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



"bmcaf12345" wrote:

I must have been looking at something else for the true & false. Thanks.

In conditional formatting, I put if the cell is greater than or equal to
="today-365", then in the formatting I made the font red. It did not work
but, I am stuggling with how to phrasing it correctly. Thanks in advance for
your help.

"David Biddulph" wrote:

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather than
changing the text color. I am not sure how to do that part. I still want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is
in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change
the
text to red. I would like to find a formula that would do this for me.






  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Formula to show a date in red if /= 365 days old in Excel?

Trying again. The first post never showed up. You are quite close, actually.

=TODAY() - 365
--
HTH,
Barb Reinhardt

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



"bmcaf12345" wrote:

I must have been looking at something else for the true & false. Thanks.

In conditional formatting, I put if the cell is greater than or equal to
="today-365", then in the formatting I made the font red. It did not work
but, I am stuggling with how to phrasing it correctly. Thanks in advance for
your help.

"David Biddulph" wrote:

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather than
changing the text color. I am not sure how to do that part. I still want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is
in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change
the
text to red. I would like to find a formula that would do this for me.






  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 287
Default Formula to show a date in red if /= 365 days old in Excel?

Try greater than or equal to

=TODAY()-365

"bmcaf12345" wrote:

I must have been looking at something else for the true & false. Thanks.

In conditional formatting, I put if the cell is greater than or equal to
="today-365", then in the formatting I made the font red. It did not work
but, I am stuggling with how to phrasing it correctly. Thanks in advance for
your help.

"David Biddulph" wrote:

Conditional formatting doesn't show true or false.

Read the help again, and if you are still struggling come back to us and
tell us step by step what you tried.
--
David Biddulph

"bmcaf12345" wrote in message
...
I looked at conditional formatting and it showed true and false rather than
changing the text color. I am not sure how to do that part. I still want
it
to show the date.

"David Biddulph" wrote:

Use conditional formatting.
--
David Biddulph

"bmcaf12345" wrote in message
...
I keep a log of dates that people receive financial assistance which is
in
effect for 365 days. After 365 days they must renew their application.
Currently, I manually look for dates that are 365 days old and change
the
text to red. I would like to find a formula that would do this for me.








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
Excel Formula to calulate number of days passed from date to date K. Mack Excel Discussion (Misc queries) 8 January 4th 07 11:27 PM
Excel formula where I can add business days (date) kskaug1 Excel Discussion (Misc queries) 3 September 1st 06 07:59 PM
Need formula for: IF K1 = y then M1= the date in A1 + 15 days LizKiz Excel Worksheet Functions 2 December 14th 05 02:23 AM
formula to calculate future date from date in cell plus days Chicesq Excel Worksheet Functions 8 November 3rd 05 12:25 PM
Excel running date formula minus weekend days Eliane Excel Worksheet Functions 2 March 30th 05 10:37 PM


All times are GMT +1. The time now is 12:41 AM.

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"