Excel conditional formatting

L

Lewy

I have a table with names across the top and tasks down the side, i have set
up a drop down list for each task under each name, in the drop down is level
1, level 2 and level 3, they are formatted to change colour depending on the
level, i want the cell with the persons name in to change colour when every
task is at level 1 can anyone help please. Thanks
 
L

Luke M

Select the cell with name in it. Under format - conditional formatting,
change the first box to "Formula is" and use something like:

=AND(A2="Level 1",B2="Level 1",C2="Level 1")

to test if multiple other cells are all at "Level 1".
 
L

Lewy

You are da man Luke M, Cheers mate.

Luke M said:
Select the cell with name in it. Under format - conditional formatting,
change the first box to "Formula is" and use something like:

=AND(A2="Level 1",B2="Level 1",C2="Level 1")

to test if multiple other cells are all at "Level 1".
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
T

T. Valko

=AND(A2="Level 1",B2="Level 1",C2="Level 1")

=AND(A2:C2="Level 1")

=COUNTIF(A2:C2,"Level 1")=3
 

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