Conditional Formatting

andy_2610

Board Regular
Joined
Jan 29, 2015
Messages
168
Hi all, I have a brain fart.. I can't figure out how to conditional format.
Below is an example...
I want to conditional format the rows yellow through column C if column C shows "DELIVERED" OR "COMPLETED" OR "PAID".

ABCD
15784500DELIVERED
25785300EN ROUTE
35786400COMPLETED
45787100PAID

<tbody>
</tbody>


Thanks for your in advance!
Andrew
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Select C1

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

=(OR(C1="DELIVERED",C1="COMPLETED",C1="PAID"))

Format as required
Use Format painter (paintbrush icon) to copy to other cells
 
Upvote 0
=find($c2,("delivered"&"completed"&"paid"))

That wont work.
Entering that formula on a blank sheet returns 1 (TRUE)
even though C2 is an empty cell
Entering PAID in C2 returns #VALUE

For each successful FIND in that formula the other two words to find will fail.
 
Upvote 0
Is there a way to highlight the whole row when it meets the criteria?
Select C1

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

=(OR(C1="DELIVERED",C1="COMPLETED",C1="PAID"))

Format as required
Use Format painter (paintbrush icon) to copy to other cells
 
Upvote 0
That wont work.
Entering that formula on a blank sheet returns 1 (TRUE)
even though C2 is an empty cell
Entering PAID in C2 returns #VALUE

For each successful FIND in that formula the other two words to find will fail.


My formula works perfectly when added as a rule in conditional formatting.

Your formula will only highlight one cell per row and is more cumbersome.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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