Possibly a dumb question...
I am trying to format a date cell to return todays date if a cell in the same row is marked "Completed" using the IF formula.
I am using the TODAY() formula as a result in the IF string, however it looks like the today formula cannot not work in this way:
=IF(Status111 = "Completed", "TODAY()", "")
The formula just returns the text "TOADY()" , which I imagine is because the formula only accepts text in the TRUE or FALSE conditions.
Is there another method to achieving this function?