Days from today
What date is a given span from today
Days and weeks are unambiguous. Months and years are not — one month after 31 January has three defensible answers — so this asks which convention you want instead of picking one silently.
Working — the span, broken down
| Unit | Count |
|---|
Why months need a convention and days do not
Ninety days from a date is a single, uncontested answer: count ninety days. One month from 31 January is not. February has twenty-eight days, so the 31st does not exist there, and three different answers are in real use. Clamping gives 28 February, which is what almost every spreadsheet and date library does — silently. Overflowing rolls the three surplus days into March and gives 3 March, which is what you want when a period must never be shortened. Refusing is what a careful contract does: it says the date is impossible and makes somebody decide.
None of these is wrong. What is wrong is applying one without saying so, which is why the answer above always names the convention it used. Days and weeks bypass the question entirely, so if you can express your span in days, do.
Why the answer will not drift when the clocks change
A date here is a year, a month and a day rather than a moment in time. Every calculation converts to midnight UTC, does integer arithmetic on whole days, and converts back. That matters twice a year: local-time arithmetic across a daylight-saving change gains or loses an hour, and an hour is enough to land an answer on the wrong date. It is the single most common way a date calculator is quietly wrong, and it is invisible except on two days a year.
Business days, alongside
The readout also gives the business-day count over the same span, with weekends and federal holidays removed, because a deadline quoted in calendar days often has to be read against a working calendar. If that is the number you actually want, the business days calculator works in it directly and lists every day it removed.