Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I enter the condition for "Formula is" if I want to base conditional
formatting on more than one valid value in a cell - i.e., if L$9 equals either "Sat" or "Sun"? My test for a single value works(=L$9="Sat"), but I can't seem to extend it to more than one value without errors. Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
=OR(L$9="Sat",L$9="Sun") In article , WillW wrote: How do I enter the condition for "Formula is" if I want to base conditional formatting on more than one valid value in a cell - i.e., if L$9 equals either "Sat" or "Sun"? My test for a single value works(=L$9="Sat"), but I can't seem to extend it to more than one value without errors. Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I also like the {} construct
=or(l$9={"Sat","Sun"}) "JE McGimpsey" wrote: One way: =OR(L$9="Sat",L$9="Sun") In article , WillW wrote: How do I enter the condition for "Formula is" if I want to base conditional formatting on more than one valid value in a cell - i.e., if L$9 equals either "Sat" or "Sun"? My test for a single value works(=L$9="Sat"), but I can't seem to extend it to more than one value without errors. Thanks. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I do too, but it only works with literals, where separate arguments can
include references, so I usually don't use it in examples. In article , Duke Carey wrote: I also like the {} construct =or(l$9={"Sat","Sun"}) "JE McGimpsey" wrote: One way: =OR(L$9="Sat",L$9="Sun") |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I convert conditional formatting into explicit formatting? | Excel Discussion (Misc queries) | |||
Formatting Conditional Formatting Icon Sets | Excel Discussion (Misc queries) | |||
Protect Cell Formatting including Conditional Formatting | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |