Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi.
I would like a conditional format set to turn a data entry column a color if it is in the right month. I tried =IF(MONTH(E$2)=MONTH(TODAY()),) but its not working. I am guessing that its because today() is volatile. Is there a way to do this? Thanks, Todd |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MONTH(E$2)=MONTH(TODAY())
try the above formula. Conditional formating is just looking for a TRUE or FALSE value, so there is no need for the IF part. "Todd" wrote: Hi. I would like a conditional format set to turn a data entry column a color if it is in the right month. I tried =IF(MONTH(E$2)=MONTH(TODAY()),) but its not working. I am guessing that its because today() is volatile. Is there a way to do this? Thanks, Todd |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
lets try to minimize the use of today() or Now() in the conditional format
formula.. place in a specific secure cells the following (e.g. ) IV1 = month(now()) IV2 = year(now()) then on conditional format e.g Column A contains list of dates on cell A1 <if month and year sensitive formula is: =and(MONTH(A1)=$IV$1,YEAR(A1)=$IV$2) pick your color font/pattern if it is only MONTH sensitive, regardless of the year formula is: =MONTH(A1)=$IV$1 pick your color font/pattern maybe -- ***** birds of the same feather flock together.. "Todd" wrote: Hi. I would like a conditional format set to turn a data entry column a color if it is in the right month. I tried =IF(MONTH(E$2)=MONTH(TODAY()),) but its not working. I am guessing that its because today() is volatile. Is there a way to do this? Thanks, Todd |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One mo
=AND(E$2<"",MONTH(E$2)=MONTH(TODAY())) Just in case E$2 is empty. Todd wrote: Hi. I would like a conditional format set to turn a data entry column a color if it is in the right month. I tried =IF(MONTH(E$2)=MONTH(TODAY()),) but its not working. I am guessing that its because today() is volatile. Is there a way to do this? Thanks, Todd -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is it possible to copy a conditional format formula as paste value | Excel Discussion (Misc queries) | |||
Conditional Format | Excel Discussion (Misc queries) | |||
Conditional Formating. Remove condition, keep format? | Excel Discussion (Misc queries) | |||
How to create a conditional format that changes the number format | Excel Discussion (Misc queries) | |||
Cell Format Changes When Data Is Entered - Not Conditional Formatt | Excel Worksheet Functions |