Google-sheets – How to turn cell yellow if date in cell is between 180 and 365 days in the past

conditional formattingdategoogle sheets

In Google Spreadsheets how do I use conditional formatting to turn a cell yellow if the date is between 180 and 365 days in the past?

Best Answer

Please try a Custom formula is like so:

=and(A1>today()-365,A1<today()-180)  

which may be applied not just to A1 but say to the whole of ColumnA if the Range: is A:A.