Good day to all!
I love how the Airtable works, but restricted by a total lack of understanding to some of the formulas. Would any one be able to help me how to figure this problem of mine please?
Apologies if this is a stupid question, but:
I’ve made a table of content for tracking of bug reports.
What I would like to do is when the Status is marked “Completed”. The Completion Date should show the Now() or Today() formula. Else, it should be black.
Here’s the formula I have used:
IF(
(Status = “Completed”),
DATETIME_FORMAT(NOW(),‘MM/DD/YYYY hh:mm’),
‘’
)
However, when I tried doing it. Every time I mark a row with status “Completed”, all the dates in are also being changed.
Thank you!