Using check boxes and flags in formulas

pea.ccu49236
✭✭
In my project sheet I have checked boxes and flag. I would like to include them in my formulas.
Example:
If the box is unchecked by X date then the X date will appear in a reminder column.
Comments
-
Try the below formula replacing "Date" and "Space" with your column names...
=IF(AND(Date1 < TODAY(), Space1 = 0), Date1)