Home > database >  Conditional formatting with multiple cells in Google sheets
Conditional formatting with multiple cells in Google sheets

Time:06-12

I am working on a spread sheet where I have a date in cell a4 and a drop down list in g4. I would like to do conditional formatting where the date in a4 reaches 6 months or older, it turns color based on g4 cell says "B-List", and stays that color until the date is less than 6 months. G4 will only have " A- List" or "B-List", and the format will only apply to "B-List" and a date that is 6 months or greater than today's date. I would like to put the conditional format in a4 if possible Thanks in advance Kevin.

CodePudding user response:

Try below formula in conditional formatting.

=AND((TODAY()-A4)>=60,G4="B-List")

enter image description here

  • Related