View Single Post
 
Old 10-03-2011, 04:33 PM
Colin Legg's Avatar
Colin Legg Colin Legg is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Jan 2011
Location: UK
Posts: 369
Colin Legg will become famous soon enough
Default

Hi,

Here's one way.

In the name manager (on the formulas tab), define a name called Letters which refers to this:
={"A","F","T"}

Then, in the conditional formatting, create a new rule which uses a formula to determine which cells to format as this:
=OR(ISNUMBER(FIND(Letters,A1)))

Where A1 is the subject cell.


This will be case sensitive. If you don't want it to be case sensitive then use the SEARCH() function instead of FIND().
Reply With Quote