Google-sheets – Output data if value is less than today’s date

formulasgoogle sheetsgoogle-sheets-arrayformulagoogle-sheets-dates

I have a spreadsheet. I want to create a formula that checks the date of one cell and if the value is lower than today's date, it to output the word required into another cell. How would I do this?

Best Answer

=ARRAYFORMULA(IF(A1:A<>""; IF(A1:A < TODAY(); "required"; ); ))

0


=IF(A1 < TODAY(); "required"; )