Conditional formatting

Jmoz092

Board Regular
Joined
Sep 8, 2017
Messages
182
I have a conditional formatting formula in place, and it displays the associated row red if the conditions are met:

Code:
[COLOR=#000000][FONT=&quot]=AND($I$2="No", $K$2="Yes")[/FONT][/COLOR]

Is it possible to affix an "or" statement onto this formatting formula? If so, how is it written? Need to keep the same rule as above, but if cell J2 = $0.00, then also format the row red.

Thanks for the help
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Just imbed your formula above in an OR statement with your new condition, i.e.
Code:
=OR([COLOR=#0000ff]AND($I$2="No", $K$2="Yes")[/COLOR][COLOR=#000000],$J$2=0)[/COLOR]
 
Upvote 0
Change the CF formula to:
Code:
=OR($J$2=0,AND($I$2="No", $K$2="Yes"))
 
Upvote 0
SO that is all I need to make the row red if j2=0, or i2=no AND k2=yes?

Sometimes I swear I think too much on these things :ROFLMAO:
 
Upvote 0
You are welcome.
Glad we could help.
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

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