Find the next Monday, Friday, or any weekday
This calculator answers “when is the next [weekday] on or after this date?” Give it a starting date and the weekday you care about, and it returns the exact date plus how many days away it is. It is useful for recurring schedules, paydays, weekly meetings, and any planning that hinges on the next instance of a particular day.
How it works
Each day of the week is numbered 0 (Sunday) through 6 (Saturday). The tool reads the weekday number of the start date and the number of the target weekday, then computes the gap with delta = (target - start + 7) % 7. The + 7 and % 7 wrap the value so it is always in the range 0 to 6, meaning the soonest upcoming match.
There is one special case. If the start date already falls on the target weekday, delta is 0. The “include the start date” option decides what to do: when checked, the start date itself is returned; when unchecked, delta becomes 7 so the tool jumps to the same weekday the following week. The chosen number of days is then added to the start date to produce the answer, with all arithmetic done in UTC so timezones cannot shift the calendar day.
Tips and example
If the start date is a Wednesday and you ask for the next Friday, the result is two days later. Ask for the next Wednesday with “include the start date” off, and you get the date exactly seven days ahead. The “days away” line makes it easy to sanity-check the result and to see at a glance how far off the target day is.