I am trying to use conditional formatting in an excel 2010 spreadsheet. The spreadsheet has seven columns of data, but for the formatting, only the first three are relevant. The first two are dates and the third either has "yes" typed in it or is blank. I want a row of the spreadsheet to be highlighted if the following is true:
either today's date is more than two days after the date entered in column A, column B is empty, and column C is empty
or today's date is more than two days after the date entered in column B and column C is empty.
The formula I attempted to use is
OR(AND((TODAY()-$A2)>2,ISBLANK($B2),ISBLANK($C2)),AND((TODAY()-$B2)>2,ISBLANK($C2)))
but nothing is highlited in the spreadsheet. I'm not very familiar with conditional formatting beyond a few basic examples, so I tried to just modify formulas I found on the internet. Because of that, I don't really understand what is going wrong with my attempted formula. Thank you in advance for any suggestions.