conditional formating of adjacent cells

N

NigelW

I would like to change the colour of a cell if certain conditions i
other cells are met, eg if cell a1="Sold" and b1>1000 and c1="horses
then can we change cell d1 to the colour blue (without changing th
text in d1). I would like to do this for a long list down th
worksheet.

Thanks in advance

Nige
 
P

Peo Sjoblom

Use formula is

=AND(A1="sold",B1>100,C1="horses")

select pattern and use the format painter to copy down
or select a range of cells with D1 as the active cell and then put in
the conditional formatting
 
A

Alan

In D1, Format on the toolbar > Conditional Formatting, select 'Formula Is"
=AND(A1="Sold",B1>1000,C1="Horses")
Select the format,
Regards,
 
B

Bob Phillips

Probably best to put the values in cells and refer to these, so it can be
tweaked with minimum effort

=AND(A1$H$1,B1>$H$2,C1=$H$3)

not the use of $.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Alan said:
In D1, Format on the toolbar > Conditional Formatting, select 'Formula Is"
=AND(A1="Sold",B1>1000,C1="Horses")
Select the format,
Regards,
 
N

NigelW

Thank you to everyone who took the time to reply, easy when you kno
what you are doing!!

Nige
 

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