Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a set of data, there are a few possible entries:
S V A P E [NUMBER] T [NUMBER] A [NUMBER] I would like to have the S, V, and P cells all be one colour and the rest be another colour. How would I define the conditional formatting to make this work? thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This function will return true when you have S, V or P in the target
cell (i.e. A1 in the example below) =NOT(ISERROR(MATCH(UPPER(A1),{"S","V","P"},1))) On Jul 25, 9:37*am, Heder wrote: I have a set of data, there are a few possible entries: S V A P E [NUMBER] T [NUMBER] A [NUMBER] I would like to have the S, V, and P cells all be one colour and the rest be another colour. How would I define the conditional formatting to make this work? thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In the conditional formatting dialog box, select Formula Is and use:
=OR(E46="S",E46="V",E46="A") for the first condition and =NOT(OR(E46="S",E46="V",E46="A")) for the second -- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "Heder" wrote: I have a set of data, there are a few possible entries: S V A P E [NUMBER] T [NUMBER] A [NUMBER] I would like to have the S, V, and P cells all be one colour and the rest be another colour. How would I define the conditional formatting to make this work? thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assume those cells are in column A starting with A1. Highlight all the
cells with A1 as the active cell, then click on Format | Conditional Formatting and choose Formula Is rather than Cell Value Is. Put this formula in the next box: =AND((LEN(A1)=1,A1<"A") Then click the Format button and choose your colour, then OK your way out. Set a normal format colour for all the cells. Hope ths helps. Pete On Jul 25, 2:37*pm, Heder wrote: I have a set of data, there are a few possible entries: S V A P E [NUMBER] T [NUMBER] A [NUMBER] I would like to have the S, V, and P cells all be one colour and the rest be another colour. How would I define the conditional formatting to make this work? thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You cannot have array constants in conditional formatting.
-- __________________________________ HTH Bob "Tim879" wrote in message ... This function will return true when you have S, V or P in the target cell (i.e. A1 in the example below) =NOT(ISERROR(MATCH(UPPER(A1),{"S","V","P"},1))) On Jul 25, 9:37 am, Heder wrote: I have a set of data, there are a few possible entries: S V A P E [NUMBER] T [NUMBER] A [NUMBER] I would like to have the S, V, and P cells all be one colour and the rest be another colour. How would I define the conditional formatting to make this work? thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Colour all the cells the colour of the rest and add one CF condition of
=OR(A2="S",A2="V",A2="P") -- __________________________________ HTH Bob "Heder" wrote in message ... I have a set of data, there are a few possible entries: S V A P E [NUMBER] T [NUMBER] A [NUMBER] I would like to have the S, V, and P cells all be one colour and the rest be another colour. How would I define the conditional formatting to make this work? thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need help with a conditional format in regards to "date" input | Excel Discussion (Misc queries) | |||
Scroll Bar missing "Control" tab in "Format Properties" dialog box | Excel Discussion (Misc queries) | |||
"Daisy-Chain" a conditional format? | Excel Discussion (Misc queries) | |||
Conditional Format Formula "includes" | Excel Discussion (Misc queries) | |||
conditional formula to show "open" or "closed" | Excel Worksheet Functions |