Count down the days remaining until a deadline or event.
Copy this formula
=A2-TODAY()Subtracting today's date from a future date gives the days left, and it updates every day because TODAY() is dynamic. A negative result means the date has passed.
=IF(A2-TODAY()<0, "Overdue", A2-TODAY()&" days")→12 daysDays left, or "Overdue".
Use =NETWORKDAYS(TODAY(), A2) to exclude weekends.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.