Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Was trying to enter in Conditional Formatting the following Using the
Formula Is: << c/f's perhaps don't take arrays - which In my case are Holidays during the year =if(Date($C$2,D$3,$C6)={$S$3,$S$4,$S$5,$S$6,$S$7,$ S$8},True) Is there a work-around -- I wish to conditionally format the Dates listed in S3:S8. Thanks, in advance |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is a bit longer than the one you have, but it does the trick:
=OR(DATE($C$2,D$3,$C6)=$S$3,DATE($C$2,D$3,$C6)=$S$ 4,DATE($C$2,D$3,$C6)=$S$5,DATE($C$2,D$3,$C6)=$S$6, DATE($C$2,D$3,$C6)=$S$7,DATE($C$2,D$3,$C6)=$S$8) Hope this helps, Miguel. "JimMay" wrote: Was trying to enter in Conditional Formatting the following Using the Formula Is: << c/f's perhaps don't take arrays - which In my case are Holidays during the year =if(Date($C$2,D$3,$C6)={$S$3,$S$4,$S$5,$S$6,$S$7,$ S$8},True) Is there a work-around -- I wish to conditionally format the Dates listed in S3:S8. Thanks, in advance |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you want to format the cells in S3:S8, select those cells and with S3 the
activecell: Format|condional Formatting Cell value is: Equal to: =DATE($C$2,$D$3,$C$6) ==== If you wanted to format a different cell if that combination of cells (c2,d3,c6) matched the dates listed in S3:S8, you could use a formula like: =MATCH(DATE($C$2,D$3,$C6),$S$3:$S$8,0) If there is no match, this formula evaluates to an error--and CF treats that as false. If there is a match, then this formula evaluates to a number--and CF treats that as True. JimMay wrote: Was trying to enter in Conditional Formatting the following Using the Formula Is: << c/f's perhaps don't take arrays - which In my case are Holidays during the year =if(Date($C$2,D$3,$C6)={$S$3,$S$4,$S$5,$S$6,$S$7,$ S$8},True) Is there a work-around -- I wish to conditionally format the Dates listed in S3:S8. Thanks, in advance -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=ISNUMBER(MATCH(DATE($C$2,D$3,$C6),$S$3:$S$8,0)) -- Regards, Peo Sjoblom http://nwexcelsolutions.com "JimMay" wrote in message news:3A79g.28101$fG3.3230@dukeread09... Was trying to enter in Conditional Formatting the following Using the Formula Is: << c/f's perhaps don't take arrays - which In my case are Holidays during the year =if(Date($C$2,D$3,$C6)={$S$3,$S$4,$S$5,$S$6,$S$7,$ S$8},True) Is there a work-around -- I wish to conditionally format the Dates listed in S3:S8. Thanks, in advance |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks very much..
Jim "Peo Sjoblom" wrote in message : Try =ISNUMBER(MATCH(DATE($C$2,D$3,$C6),$S$3:$S$8,0)) -- Regards, Peo Sjoblom http://nwexcelsolutions.com "JimMay" wrote in message news:3A79g.28101$fG3.3230@dukeread09... Was trying to enter in Conditional Formatting the following Using the Formula Is: << c/f's perhaps don't take arrays - which In my case are Holidays during the year =if(Date($C$2,D$3,$C6)={$S$3,$S$4,$S$5,$S$6,$S$7,$ S$8},True) Is there a work-around -- I wish to conditionally format the Dates listed in S3:S8. Thanks, in advance |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe something like this:
Select S3:S9, with S3 as the active cell <format<conditional formatting Formula is: =(S3=DATE($C$2,$D$3,$C$6)) Click the [format] button and set the formats Click the [OK] buttons Is that something you can work with? *********** Regards, Ron XL2002, WinXP "JimMay" wrote: Was trying to enter in Conditional Formatting the following Using the Formula Is: << c/f's perhaps don't take arrays - which In my case are Holidays during the year =if(Date($C$2,D$3,$C6)={$S$3,$S$4,$S$5,$S$6,$S$7,$ S$8},True) Is there a work-around -- I wish to conditionally format the Dates listed in S3:S8. Thanks, in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Keeping conditional formatting when sorting | Excel Discussion (Misc queries) | |||
Conditional Formatting when inserting a row | Excel Worksheet Functions | |||
Conditional Formatting Error | Excel Worksheet Functions | |||
difficulty with conditional formatting | Excel Discussion (Misc queries) | |||
Conditional formatting not available in Excel | Excel Discussion (Misc queries) |