What Is the Days Until the Weekend Calculator?
This simple tool tells you exactly how many days you have to wait until the weekend arrives. Just select today's day of the week and the calculator counts forward to the next Saturday. If today is already Saturday or Sunday, it cheerfully reports that the weekend is here.
How to Use It
Choose the current day from the dropdown — it defaults to today's day automatically. The result box shows the number of days remaining until Saturday. A status row confirms whether today is a weekday or already part of the weekend.
The Formula Explained
Days of the week are mapped to an index where Monday = 0, Tuesday = 1, and so on through Sunday = 6. Saturday is index 5. The countdown is calculated as:
$$\text{days} = (5 - \text{weekday} + 7)\bmod 7$$
The "+ 7" and "mod 7" keep the answer between 0 and 6 even when the week wraps around. Saturday (5) and Sunday (6) are treated as the weekend, so the result is forced to 0 on those days.
Worked Example
Suppose today is Wednesday. Wednesday's index is 2. Then $$\text{days} = (5 - 2 + 7)\bmod 7 = 10 \bmod 7 = 3.$$ So there are 3 days until Saturday (Thursday, Friday, then Saturday). If today is Friday (index 4): $$\text{days} = (5 - 4 + 7)\bmod 7 = 8 \bmod 7 = 1$$ — just one more day!
FAQ
Does the weekend start on Saturday or Friday? This calculator counts to Saturday as the start of the weekend, which is the most common convention.
What happens on a weekend day? If today is Saturday or Sunday, the result is 0 because you're already in the weekend.
Can I change the target day? The countdown is fixed to Saturday, but you can read the result as "days until your days off" for a standard Monday–Friday schedule.