Conditional Formatting with multiple values

JacJ01

New Member
Joined
Nov 28, 2018
Messages
3
I am setting up a s/sheet to keep track of meetings, if they were held, minutes received and attendance.

I have set up formulas to give me the status. I want the status cell to change colour depending on its value. I would like

Cancelled – Red (Got this set up already)
Waiting for minutes – Orange (Got this set up already)

The next bit is where I’m having trouble, I would like

If column H contains “Complete” and column E is “Yes” then Blue
If column H contains “Complete” and column E is “No” then Green

I’ve tried to use =AND($H:$H="Complete",$E:$E="Yes") but it changes all the blank cells, what am I doing wrong?

Any help would be appreciated
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Select the entire range to be highlighted, e.g. A1:A1000

Conditional Formatting
New Rule
Use a formula to determine...

=(H1="Cancelled")
format as Red

=(H1="Waiting for minutes")
format as Orange

=AND(H1="Complete",E1="Yes")
format as Blue

=AND(H1="Complete",E1="No")
format as Green
 
Upvote 0

Forum statistics

Threads
1,215,152
Messages
6,123,323
Members
449,094
Latest member
Chestertim

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top