I am attempting to create a formula that returns the date when my "Completed" column = 100%. Smartsheet keeps saying my syntax is incorrect. From what I can tell I need to use the TODAY function paired with an addition column that acts as a check to prevent it from perpetually updating the cell. In English the formula for Date Completed column would be: If completed = 100% & check column is not checked return Today's Date. And the checked column would be: If Date Completed, is not blank, check column.
The two formulas I have as of right now are
Completed Date:
=IF(AND([Completed]@row = 100, [Check]@row = 0), TODAY(), )
and
Check:
=IF(NOT(ISBLANK([Completed Date]@row)), 1, 0)
Edit: I realize now that this is a circular reference. I think I need a third column to do some sort of storage check but IDK what exactly.