Conditional Formatting - need to add a "not equal to" to my formula

MariaR323

New Member
Joined
Sep 13, 2017
Messages
12
Maybe it's because it's soo late and I'm here working on this but I can't figure this out. Help from the masters would be appreciated.

I have a conditional formatting formula already setup and it works...

<date(2019,8,2)))
AND(($AZ10>0.249),($F10<date(2019,8,2)))
<DATE(2019,8,2)))
<date(2019,8,2)))
<date(2019,8,2))) '
<date(2019,8,2)))

a) it's looking at Col AZ to see if its more than 25% AND
b) it's looking at Col F to see if the date is before 8/2/19

But I want to add to it... I'd like to add to check if Col BC contains the word "Inactive" - if it does, I don't want it to apply conditional formatting.

I added the Orange to it but it doesn't work:

AND(($AZ10>0.249),($BC10<>"*Inactive*"),($F10<date(2019,8,2)))
<date(2019,8,2)))
<date(2019,8,2)))
</date(2019,8,2)))
</date(2019,8,2)))
</date(2019,8,2)))
</date(2019,8,2)))
</date(2019,8,2)))></date(2019,8,2)))
</date(2019,8,2)))
</date(2019,8,2)))
<DATE(2019,8,2)))
 
Last edited:

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Replace the orange part with
ISERR(SEARCH("inactive",$BC10))

Also when posting formulae that contain < or > you need to add spaces before & after the < & > or your formula will be destroyed.
 
Upvote 0
Replace the orange part with
ISERR(SEARCH("inactive",$BC10))

Also when posting formulae that contain < or > you need to add spaces before & after the < & > or your formula will be destroyed.

Huge thanks!! This worked beautifully!

And noted on the format for posting formulas ;)
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,213,533
Messages
6,114,179
Members
448,554
Latest member
Gleisner2

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