Suppose you are in a situation where you have to calculate weeks from some given date range. And you need to calculate cost estimation by using those weeks, for instance. So how will you calculate those weeks? Well, you can calculate those using your calculator, or you can do it in Excel in a faster way. Guess what our topic is today? That’s right! This is how you can calculate the number of weeks between two dates in Excel.
Let’s assume we have a dataset, namely “Timeline for Everest Base Camp Expedition”. You can use any dataset suitable for you.
Here, we have used the Microsoft Excel 365 version; you may use any other version according to your convenience.
1. Using INT Function
Firstly, you can calculate the number of weeks between two given dates by doing a simple mathematical calculation. We will subtract two given dates and then divide them by 7 to get the number of weeks. To get an integer value, we will use the INT function.
📌 Steps:
- Initially, select the D5 cell and apply the following formula given below.
=INT((C5-B5)/7)
Here, C5 and B5 cells represent “Ending Date” and “Starting Date” respectively. In this formula, the mathematical subtraction returns the number of days first. Later, when the output is divided by 7, we get the number of weeks, but not in integers. That’s why we need to use the INT function to get the desired output.
- Then press ENTER.
- To get the rest of the value, drag the Fill Handle tool from D5 cell to D15.
- So, the final output will be as given below.
Read More: Excel Formula for Number of Days Between Two Dates
2. Applying ROUNDDOWN Function
The ROUNDOWN function returns the same output as found in the earlier method. Here, the output has been rounded down by using the ROUNDDOWN formula.
📌 Steps:
- To begin, put the following formula in the D5
=ROUNDDOWN((C5-B5)/7,0)
- Then press ENTER.
- Subsequently, drag the Fill Handle
- As a result, your final output will be as follows.
Read More: Excel Formula to Find Date or Days for Next Month (6 Quick Ways)
Similar Readings
- How to Calculate Tenure in Years and Months in Excel
- How to Calculate 90 Days from a Specific Date in Excel
- Add 3 Years to a Date in Excel (3 Effective Ways)
- How to Calculate Expiration Date with Excel Formula
- How to Calculate Working Days between Two Dates in Excel (4 Methods)
3. Utilizing the DATEDIF Function
In this method, we will learn how to calculate the number of weeks between two dates using the DATEDIF function. The method is not hard. All you need to know is how you use the DATEDIF function to do your task.
📌 Steps:
- As we do before, click on cell D5 and then type the following formula.
- Press ENTER.
- Finally, drag the Fill Handle tool from the D5 cell to D15 to get the rest of the value.
- The output will look like the one below.
Read More: How to Use DateDiff Function in Excel VBA (5 Examples)
4. Employing WEEKNUM Function
By using the WEEKNUM function, you can calculate the number of weeks between two given dates. But one thing you should keep in mind is that this function will give you the correct output if two dates (from which you want to find the number of weeks) are in the same year. Sounds Confusing? Not at all! You will understand the functionality if you look at the example that I have given below.
Suppose we have a data set that looks like this:
Now follow the steps that are given below.
📌 Steps:
- First, click on cell D5 and type the following formula.
=WEEKNUM(B5)-WEEKNUM(B5)
Basically, the WEEKNUM returns the week number in a year from any specific date. For this reason, we have to use the function twice for each date.
- Press ENTER.
- Drag the Fill Handle tool as we have shown below.
- Thus, we get the values of the weeks as follows.
Read More: How to Apply Excel Formula to Count Days from Date to Today
Calculating the Number of Weekdays Between Two Dates in Excel
Now, we can calculate our weekdays between given dates employing the DATEDIF function in our Excel sheet.
📌 Steps:
- Type the following formula in D5
=(DATEDIF(B5, C5, "d"))
In this case, we use the “d” argument as we want to find the number of days between two dates.
- Then press ENTER.
- Then drag the Fill Handle tool from the D5 cell to D15 to get the other value.
- As a result, the output looks like this:
Read More: How to Calculate Number of Days Between Two Dates in Excel
Calculating the Number of Months Between Two Dates in Excel
The Excel DATEDIF function also allows you to determine the number of months between two dates, like counting days.
📌 Steps:
- Type the following formula.
=(DATEDIF(B5, C5, "m"))
In this formula, “m” gives Excel the direction to count the month as we have previously learned for counting days.
- Then press ENTER.
- Drag the Fill Handle tool from the D5 cell to the D15 cell to get the other value
- Finally, the output you get is as follows:
Read More: How to Count Months in Excel (5 ways)
Calculating the Number of Years Between Two Dates in Excel
Similarly, you can also find the number of years between two dates utilizing the DATEDIF function in Excel.
📌 Steps:
- First, type the following formula for D5
=(DATEDIF(B5, C5, "y"))
- Secondly, press ENTER.
- Next, drag the Fill Handle
- In turn, the output you get is as follows:
Read More: How to Calculate Years in Excel from Today (4 Ways)
Practice Section
Additionally, we have provided a Practice section on the right side of each sheet so you can practice yourself. Please make sure to do it yourself.
Download Practice Workbook
You can download and practice the dataset that we have used to prepare this article.
Conclusion
We hope you have learned something new today through this tutorial. In fact, calculating the number of weeks between two dates is not hard at all, and we think all of us should learn this method to make our lives a little bit easier. Nevertheless, we will be at your disposal if you have any queries. Thank you.
Related Articles
- How to Count Date Occurrences in Excel (3 Suitable Examples)
- Add 30 Days to a Date in Excel (7 Quick Methods)
- How to Add 6 Months to a Date in Excel (2 Easy Ways)
- Add 7 Days to a Date in Excel (3 Methods)
- How to Use COUNTIFS with Date Range in Excel (6 Easy Ways)
- How to Add 3 Months to a Date in Excel (4 Easy Methods)