Conditional Formatting

The_Game

New Member
Joined
Mar 27, 2015
Messages
31
Looked up a few guides, but nothings working. I want to conditional format a table that checks a date (G2) that's less then TODAY() AND if H2 or I2 are False, then highlight the entire row. The formula I've tried using was: =AND($G2<TODAY()-60,$H2="FALSE",$I2="FALSE"). I want to highlight the whole row if G2 is older than 60 days. If the date is current, then if "H" & "I" say FALSE, then it will highlight the whole row. If both are current and TRUE, nothing is highlighted. I'm thinking an IF statement in conjunction with an AND may be necessary, I'm having issues figuring it out.

Attached is one line from a table. Table is A1:I41.
 

Attachments

  • Excel.PNG
    Excel.PNG
    7.4 KB · Views: 5

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
How about
=AND($G2<TODAY()-60,OR($H2="FALSE",$I2="FALSE"))

You may need to remove the " from the word FALSE.
 
Upvote 0
Are the values in columns H and I boolean or text?
If Boolean, then remove the double-quotes from around the World FALSE.

Also, the way you have written your formula, it is looking for BOTH H2 and I2 to be FALSE. If only one has to be, then it should be:
=AND($G2<(TODAY()-60),OR($H2=FALSE,$I2=FALSE))
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,860
Members
449,194
Latest member
HellScout

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