A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Use an IF formula that checks the status cell and returns today’s date when it equals "Complete".
Assume:
- Column A has the status (e.g., A2 = "Complete").
- Column B should show the date.
In B2 enter:
=IF(A2="Complete",TODAY(),"")
Then copy/fill this formula down column B.
Notes:
-
TODAY()returns the current date and updates whenever the workbook recalculates or opens, so the date will change every day, not stay as the original completion date. - Format column B as a date if needed: Home → Number Format → Short Date or Long Date.
If a static (non‑changing) completion date is required, a worksheet formula alone cannot do this; a macro or manual entry (e.g., Ctrl+; to insert today’s date) is needed.
References: