Day Counter

Count days between dates

Results

Day count
Weeks and days
Range

How to Use This Day Counter

Counting days between two dates sounds like grade-school math until someone asks whether the move-in day itself counts, or until you realize your lease "30-day notice" might mean 30 elapsed days or 30 inclusive calendar days depending on the lease language. In my experience reviewing rental agreements and project Gantt charts, the off-by-one error almost always comes from the inclusive/exclusive choice—not from miscounting weeks.

To get started, enter a start date and an end date in either order—the tool uses the absolute difference, so swapping them gives the same count. Check Include both start and end dates when your policy counts both boundary days (common in hotel stays and some legal notice periods). Press Calculate for the day count, a weeks-and-days breakdown, and a range summary that states whether the end date was counted.

  • Enter the two dates using the pickers or YYYY-MM-DD typing—project kickoff and delivery, trip departure and return, or visa issue and expiry.
  • Decide on inclusive counting before calculating: unchecked means the span behaves like "days between" with the end date excluded; checked adds one to include both endpoints.
  • Press Calculate to see the day count, whole weeks plus leftover days, and a readable range line confirming your inclusive setting.
  • Match your document's definition—if the contract says "including the date of service," enable inclusive mode; if it says "within 14 days of receipt," confirm whether day zero counts in your jurisdiction.

Think of the two dates as fence posts and the day count as the panels between them—or including the posts themselves when inclusive mode is on. A hotel stay from Friday check-in to Sunday check-out is often three inclusive days but two exclusive elapsed midnights. Wedding planners use exclusive counts for vendor load-in windows; travelers use inclusive counts for trip length; compliance officers use whichever mode the regulation specifies.

When you need to shift a date forward or backward by a set number of days rather than measure a gap, use the Date Calculator. When you also need hours and minutes between timestamps, use the Time Duration Calculator.

Day Counter Formulas and Practical Applications

The count is calendar-day arithmetic on midnight-normalized dates—clock times are not part of this tool.

Absolute day difference

Raw Days = |End Date − Start Date| (in whole calendar days)

March 1 to March 31 yields 30 raw days—the number of midnights crossed when walking forward from the start, excluding the end date by default.

Inclusive adjustment

Day Count = Raw Days + 1 when inclusive mode is checked

Day Count = Raw Days when inclusive mode is unchecked (end date not counted)

Worked example: June 1, 2026 to June 7, 2026. Raw difference = 6 days. Exclusive count = 6 days (June 7 not counted as an elapsed day beyond the sixth midnight). Inclusive count = 7 days (every calendar day from June 1 through June 7 listed once).

Weeks and leftover days

Weeks = floor(Day Count ÷ 7)

Remaining Days = Day Count mod 7

A 10-day exclusive span splits into 1 week, 3 days. This helps when a policy phrases limits in weeks—"no more than two weeks" maps to 14 exclusive days only if your inclusive setting matches how the policy was written.

Frequently Asked Questions

What is the difference between inclusive and exclusive counting?

Exclusive (default) counts the days between the dates without adding the end date—like measuring the gap between two mile markers. Inclusive adds one to count both the start and end calendar days as part of the span—like counting every night of a hotel stay including checkout morning. Legal and travel documents vary; match the checkbox to the document's language.

Does the order of dates matter?

No. The tool takes the absolute difference, so entering April 10 as start and April 1 as end gives the same count as the reverse order. The range row always displays the earlier date first for readability.

Are leap years handled automatically?

Yes. Calendar-day subtraction uses the browser's date engine, which includes February 29 in leap years. A span crossing February in a leap year picks up the extra day without manual adjustment.

How is this different from the Date Calculator?

The Day Counter measures how many days separate two fixed endpoints. The Date Calculator starts from one date and adds or subtracts a set number of days, weeks, months, or years to find a new endpoint. Use this tool when you know both dates; use the Date Calculator when you know one date and an offset.

Can I count business days only?

This tool counts all calendar days including weekends and holidays. Business-day counting requires excluding Saturdays, Sundays, and locale-specific holidays—a different rule set not built into this calculator. Use the calendar-day total here as a baseline, then adjust manually against your holiday calendar for business-day policies.