Enter values to see results
—
—
—
Enter values to see results
—
—
—
The Weekday Calculator determines whether any given date falls on a weekday (Monday through Friday) or a weekend (Saturday or Sunday), and identifies the specific day of the week. This focused tool answers one of the most practical calendar questions: is this date a business day or not?
The weekday vs. weekend distinction is fundamental to countless scheduling and deadline calculations. Business deadlines in finance, law, government, and commerce are typically only enforceable on business days. Bank transactions (wire transfers, ACH payments, check clearing) settle only on business days — a payment due on Saturday may not clear until Monday. Court filings with deadlines that fall on weekends or holidays are typically extended to the next business day. Government offices are closed on weekends, making weekend dates unsuitable for in-person services.
For personal planning, weekend vs. weekday classification helps with scheduling meetings (preferring weekdays), planning leisure activities (preferring weekends), booking travel (prices differ for weekday vs. weekend travel), and understanding work-life calendar rhythms. Parents scheduling school events, healthcare providers scheduling non-emergency appointments, and event organizers booking venues all need to distinguish business days from non-business days.
Enter any date to instantly know its weekday name and whether it is a weekday or weekend day. The calculation is accurate for any date in the Gregorian calendar and handles all calendar irregularities correctly.
The weekday classification is a two-step process: (1) determine the day of the week index, and (2) classify it as weekday or weekend.
The day of the week for date $$D$$ is computed using the formula:
$$w = \left( \left\lfloor \frac{T_D}{86{,}400{,}000} \right\rfloor + 4 \right) \mod 7$$
where $$T_D$$ is the date's Unix timestamp in milliseconds and the constant 4 accounts for the Thursday alignment of January 1, 1970. This gives $$w \in \{0, 1, 2, 3, 4, 5, 6\}$$ corresponding to Sunday through Saturday.
The classification is then:
$$\text{isWeekday}(w) = \begin{cases} \text{true} & 1 \leq w \leq 5 \ (\text{Mon-Fri}) \\ \text{false} & w = 0 \text{ or } w = 6 \ (\text{Sun, Sat}) \end{cases}$$
A business day in most jurisdictions is any weekday that is not a public holiday. Since public holidays vary by country, region, and year, this calculator classifies only by weekday/weekend — the user must separately check for applicable public holidays. In some countries or industries, weekends may be defined differently (e.g., Friday-Saturday in some Middle Eastern countries, or Sunday-only in some seven-day operation industries).
The proportion of weekdays in any given year is approximately: $$\frac{260 \text{ to } 262}{365 \text{ or } 366} \approx 71.2\%$$, depending on which days of the week January 1 falls on and whether it is a leap year.
The Day of Week output names the weekday. The Weekday Status confirms whether the date is a Monday-through-Friday workday. The Weekend Status confirms whether the date is a Saturday or Sunday.
Remember that "weekday" in this calculator means Monday-Friday universally. In practice, whether a date is a business day also depends on whether it is a public holiday in your jurisdiction. For example, Monday, January 1 (New Year's Day) is technically a weekday by this calculator but is a non-business day in most countries. Always check your local public holiday calendar when business-day determination is legally or contractually significant.
Inputs
Results
Christmas Day 2026 (December 25) falls on a Friday — technically a weekday, though it is a public holiday in most countries. Business deadlines or transactions due on this date may be subject to holiday rules.
Inputs
Results
July 18, 2026 is a Saturday — a weekend day. Scheduling business transactions or government services on this date would require moving to the next business day (Monday, July 20).
In most Western countries, a business day (also called a "working day") is any day from Monday to Friday that is not a public holiday. Saturdays, Sundays, and public holidays are non-business days. However, the definition varies by industry and jurisdiction: financial markets may have their own holiday schedules, retailers often operate 7 days a week, and some countries observe different weekend days (e.g., Friday-Saturday in parts of the Middle East). This calculator classifies by Mon-Fri weekday only, not by public holidays.
For most legal, financial, and governmental deadlines, if the due date falls on a Saturday, the deadline is extended to the following Monday. If it falls on a Sunday, it is extended to Monday. If it falls on a public holiday, it is typically extended to the next business day. However, this "next business day" rule is not universal — some contracts and regulations specify that the deadline stands regardless of weekends, or that it moves to the preceding Friday. Always verify the applicable rule for your specific context.
No. The most common convention globally is Monday-Friday = weekdays, Saturday-Sunday = weekend. However, some Middle Eastern countries (including Israel, Saudi Arabia, UAE) traditionally observe Friday-Saturday or Friday as their weekend/rest days, with Sunday being a regular workday. Some countries observe Sunday only as the official day of rest. Religious calendars (Islamic Friday prayers, Jewish Saturday Shabbat, Christian Sunday services) further influence cultural definitions of "weekday."
In a standard Gregorian year, there are approximately 260-262 weekdays (Monday-Friday) out of 365 or 366 total days, depending on which day January 1 falls and whether it is a leap year. After subtracting typical public holidays (which vary by country but average 8-12 per year in most developed nations), the typical number of actual working days in a year is approximately 248-254. The US, for example, has 11 federal holidays, giving roughly 249 working days.
In the standard Mon-Fri convention, Friday is a weekday. The weekend begins Saturday and ends Sunday. Informally, some people refer to Friday afternoon as the "start of the weekend," and many businesses begin operating on reduced hours on Friday afternoons. However, for calendar and business purposes, Friday is classified as a weekday in most countries that use the standard Mon-Fri work week.
The modern 5-day, 40-hour work week emerged from labor movement reforms in the early 20th century. Henry Ford is often credited with popularizing the 5-day work week in the US in 1926 after demonstrating that reduced hours did not decrease productivity. The Fair Labor Standards Act of 1938 standardized the 40-hour week in the US. Previously, 6-day work weeks were common in industrial settings. The 7-day week itself dates to ancient Mesopotamia and has been culturally universal for millennia.
Roboculator Team
The Roboculator Team explains calculations, planning tools, and practical formulas in clear language for real-life situations.
How helpful was this calculator?
Be the first to rate!