Conditional Formatting based on cell text

S

Saucer Man

I am currently filling in the entire row Yellow if the cell in column Q
doesn't have anything in it. I want to fill with a different color if the
first characters in the cell are "Shipped". How do I do this? I am using
the following formula to fill it yellow...

=NOT(ISBLANK($Q4))

Thanks!
 
C

Claus Busch

Hi,

Am Tue, 22 May 2012 14:27:46 -0400 schrieb Saucer Man:
I am currently filling in the entire row Yellow if the cell in column Q
doesn't have anything in it. I want to fill with a different color if the
first characters in the cell are "Shipped". How do I do this? I am using
the following formula to fill it yellow...

try:
=SEARCH("Shipped",$Q4)=1
or
=LEFT($Q4,7)="Shipped"


Regards
Claus Busch
 
W

Walter Briscoe

In message <[email protected]> of Tue, 22 May 2012
14:27:46 in microsoft.public.excel.worksheet.functions, Saucer Man
I am currently filling in the entire row Yellow if the cell in column Q
doesn't have anything in it. I want to fill with a different color if
the first characters in the cell are "Shipped". How do I do this? I
am using the following formula to fill it yellow...

=NOT(ISBLANK($Q4))

I do that with two conditional formats.
On B3, I have Condition 1
Cell Value Is greater than 10
and Condition 2
Formula Is =AND(B3<4,B3<>"

The Format...s for the two conditions select different colors in the
Patterns tab.
 
S

Saucer Man

Thanks all. This worked.



"Claus Busch" wrote in message
Hi,

Am Tue, 22 May 2012 14:27:46 -0400 schrieb Saucer Man:
I am currently filling in the entire row Yellow if the cell in column Q
doesn't have anything in it. I want to fill with a different color if the
first characters in the cell are "Shipped". How do I do this? I am using
the following formula to fill it yellow...

try:
=SEARCH("Shipped",$Q4)=1
or
=LEFT($Q4,7)="Shipped"


Regards
Claus Busch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top