This is a simple calculator of weeks between two dates, where you will be able to know the result in weeks by entering two dates in the input field. So, to know the week, enter the dates in both the input bars and click on the calculate button.
How to use Weeks between two dates calculator?
Here is a simple guide for you to use the weeks between two dates calculator. But if you want to add or subtract, check out here.
- Start date: Click on the date input field labeled Start Date. A date picker will appear, you can select a start date, enter manually in dd-mm-yyyy format.
- End date: Similarly, click on the “End date” input field. Again, a date picker will appear to select the “End date” or enter it manually.
- Calculate: After selecting both the dates, click on the Calculate button to see the result in weeks as well as other time formats.
Result:
You will find the total number of weeks between the two selected dates in large font. Below the week results, there is a table for hour, day, month, and year results.
Note: Make sure both dates selected are valid and the end date is after the start date for accurate results. We have set a default date to show initial results, but you can chnage it.
Weeks between two dates calculation:
To calculate the number of weeks between two dates, you can use the following formula:
- End Date: The later date.
- Start Date: The earlier date.
- Weeks: The total number of weeks between the two dates.
Weeks = (End Date − Start Date) ÷ 7
Note: But in JavaScript it is calculated as follows:
- Dates to Milliseconds: Subtract the start date from the end date to find the difference in milliseconds.
- Milliseconds to Days: Divide the difference by 1000 × 60 × 60 × 24 to convert milisecond into days.
- Days to Weeks: Divide the total number of days by 7 to get the number of weeks.
Days = Diiference ÷ (1000 × 60 × 60 × 24)
Then, Weeks = Days ÷ 7
This is how you can use the formula to calculate the number of weeks between two dates.