How to today days remaining in Excel
Track how many days are left until a project deadline, contract expiry, or event date without manually updating the spreadsheet.
Step-by-step instructions
How to today days remaining — 3 steps
Enter the deadline date in column A.
Subtract TODAY() from the deadline date — Excel returns a date serial number representing the difference in days.
Format the result cell as a Number (not a Date) so it displays as an integer count of days.
Example data
Worked example
| Deadline | Days Remaining |
|---|---|
| 2026-04-30 | 35 |
| 2026-05-15 | 50 |
| 2026-03-20 | -6 |
Common mistakes
Errors to watch out for
Result shows a date instead of a number
Excel formats date subtraction results as dates by default. Select the cell and change the format to General or Number to see the integer day count.
Negative result
A negative result means the deadline has already passed. Wrap in ABS() to show the absolute number of days, or use an IF to show "Overdue" instead.
FAQ
Frequently asked questions
How do I show "Overdue" when the deadline has passed?
Use =IF(A2<TODAY(),"Overdue",A2-TODAY()) to display a label for past deadlines and a day count for future ones.
Describe your exact spreadsheet problem — get the formula in seconds.
Open AI Formula Generator — FreeRelated how-to guides