Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I automatically get the font color to change if I have a date that is
over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Format Conditional Formatting select Formula Is form the dropdown and
enter: =DATEDIF($G$4,TODAY(),"m")=18 Change the $G$4 to your own reference -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you Sandy...that worked...I just realized though I need to color code
different if its over 6 months as well as under can that be added to the formula to? example Feb 1, 2006 over 18months needs to be Red May 06 over six months needs to be blue anything under 6 months needs to be green Thanks "Sandy Mann" wrote: Format Conditional Formatting select Formula Is form the dropdown and enter: =DATEDIF($G$4,TODAY(),"m")=18 Change the $G$4 to your own reference -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I did this and changed the colors but they all changed red
"Sandy Mann" wrote: You can have three levels of Conditional formatting. Use the same formula with different = values and colours -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" wrote in message ... Thank you Sandy...that worked...I just realized though I need to color code different if its over 6 months as well as under can that be added to the formula to? example Feb 1, 2006 over 18months needs to be Red May 06 over six months needs to be blue anything under 6 months needs to be green Thanks "Sandy Mann" wrote: Format Conditional Formatting select Formula Is form the dropdown and enter: =DATEDIF($G$4,TODAY(),"m")=18 Change the $G$4 to your own reference -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Did you have the over 18 moths first then the over 6 months? You don't
actually need an under 6 months because that will be the colour that you set the cell to. -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" wrote in message ... I did this and changed the colors but they all changed red "Sandy Mann" wrote: You can have three levels of Conditional formatting. Use the same formula with different = values and colours -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" wrote in message ... Thank you Sandy...that worked...I just realized though I need to color code different if its over 6 months as well as under can that be added to the formula to? example Feb 1, 2006 over 18months needs to be Red May 06 over six months needs to be blue anything under 6 months needs to be green Thanks "Sandy Mann" wrote: Format Conditional Formatting select Formula Is form the dropdown and enter: =DATEDIF($G$4,TODAY(),"m")=18 Change the $G$4 to your own reference -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Format/ Conditional Formatting:
Cell Value is/ Less than: =TODAY()-(365*1.5) or Formula is: =DATEDIF(A1,TODAY(),"m")=18 Choose your font colour. -- David Biddulph "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"David Biddulph" <groups [at] biddulph.org.uk wrote in message
... Cell Value is/ Less than: =TODAY()-(365*1.5) Very minor point but (365*1.5) is 547.5 so the colour would change during the day. Perhaps: =DATE(YEAR(TODAY())-1,MONTH(TODAY())-6,DAY(TODAY())) or INT(365*1.5) -- Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "David Biddulph" <groups [at] biddulph.org.uk wrote in message ... Format/ Conditional Formatting: Cell Value is/ Less than: =TODAY()-(365*1.5) or Formula is: =DATEDIF(A1,TODAY(),"m")=18 Choose your font colour. -- David Biddulph "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Got It!!!! I used =TODAY()-(365*1.5) formula and I was able to get them all
the change the correct color just change 1.5 to .5 and 0...THANKS SO MUCH! "Sandy Mann" wrote: "David Biddulph" <groups [at] biddulph.org.uk wrote in message ... Cell Value is/ Less than: =TODAY()-(365*1.5) Very minor point but (365*1.5) is 547.5 so the colour would change during the day. Perhaps: =DATE(YEAR(TODAY())-1,MONTH(TODAY())-6,DAY(TODAY())) or INT(365*1.5) -- Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "David Biddulph" <groups [at] biddulph.org.uk wrote in message ... Format/ Conditional Formatting: Cell Value is/ Less than: =TODAY()-(365*1.5) or Formula is: =DATEDIF(A1,TODAY(),"m")=18 Choose your font colour. -- David Biddulph "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Glad that you got it but in that case the thanbks go to David.
-- Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "Rachel" wrote in message ... Got It!!!! I used =TODAY()-(365*1.5) formula and I was able to get them all the change the correct color just change 1.5 to .5 and 0...THANKS SO MUCH! "Sandy Mann" wrote: "David Biddulph" <groups [at] biddulph.org.uk wrote in message ... Cell Value is/ Less than: =TODAY()-(365*1.5) Very minor point but (365*1.5) is 547.5 so the colour would change during the day. Perhaps: =DATE(YEAR(TODAY())-1,MONTH(TODAY())-6,DAY(TODAY())) or INT(365*1.5) -- Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "David Biddulph" <groups [at] biddulph.org.uk wrote in message ... Format/ Conditional Formatting: Cell Value is/ Less than: =TODAY()-(365*1.5) or Formula is: =DATEDIF(A1,TODAY(),"m")=18 Choose your font colour. -- David Biddulph "Rachel" <Rachel @discussions.microsoft.com wrote in message ... How do I automatically get the font color to change if I have a date that is over 18 months old.....like I have February 1 2006 I want that to change to Red because it is over 18 months old. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula Question | Excel Discussion (Misc queries) | |||
Formula Question | Excel Worksheet Functions | |||
Formula question | Excel Discussion (Misc queries) | |||
Newbie Question - Subtraction Formula Question | Excel Discussion (Misc queries) | |||
Formula Question | Excel Worksheet Functions |