Mar 13, 2019 05:21 PM
I have a Date Field and a Checkbox Field
I would like Records with Dates in the Past to be unchecked and Dates that are equal to today or in the future to be checked.
Date Checkbox
3/16 True
3/15 True
3/14 True
3/13 False
3/12 False
3/11 False
3/10 False
Thank you
Mar 13, 2019 06:01 PM
Probably a better way to do this but here is my 5 minute effort:
I used two formulas and a date column
diff formula: DATETIME_DIFF(Date,TODAY(), “days”)
checkbox formula: IF(Diff > -1,“ :white_check_mark: ”)
Mar 13, 2019 06:22 PM
@Mac Nice work, this is exactly what I needed, thank you
Mar 13, 2019 06:32 PM
Beautiful! Glad I could help!
Oct 14, 2019 10:15 PM
I have a similar need, but I want a checkbox column checked TRUE if a date field is after real-time TODAY.
I.e., If my “Expiration date” field is after TODAY, I want my “Active Term” Field checked true.