
- MS Excel Basics
- Excel - Home
- Excel - Getting Started
- Excel - Explore Window
- Excel - Backstage
- Excel - Entering Values
- Excel - Move Around
- Excel - Save Workbook
- Excel - Create Worksheet
- Excel - Copy Worksheet
- Excel - Hiding Worksheet
- Excel - Delete Worksheet
- Excel - Close Workbook
- Excel - Open Workbook
- Excel - Context Help
- Editing Worksheet
- Excel - Insert Data
- Excel - Select Data
- Excel - Delete Data
- Excel - Move Data
- Excel - Rows & Columns
- Excel - Copy & Paste
- Excel - Find & Replace
- Excel - Spell Check
- Excel - Zoom In-Out
- Excel - Special Symbols
- Excel - Insert Comments
- Excel - Add Text Box
- Excel - Undo Changes
- Formatting Cells
- Excel - Setting Cell Type
- Excel - Setting Fonts
- Excel - Text Decoration
- Excel - Rotate Cells
- Excel - Setting Colors
- Excel - Text Alignments
- Excel - Merge & Wrap
- Excel - Borders and Shades
- Excel - Apply Formatting
- Formatting Worksheets
- Excel - Sheet Options
- Excel - Adjust Margins
- Excel - Page Orientation
- Excel - Header and Footer
- Excel - Insert Page Breaks
- Excel - Set Background
- Excel - Freeze Panes
- Excel - Conditional Format
- Working with Formula
- Excel - Creating Formulas
- Excel - Copying Formulas
- Excel - Formula Reference
- Excel - Using Functions
- Excel - Builtin Functions
- Advanced Operations
- Excel - Data Filtering
- Excel - Data Sorting
- Excel - Using Ranges
- Excel - Data Validation
- Excel - Using Styles
- Excel - Using Themes
- Excel - Using Templates
- Excel - Using Macros
- Excel - Adding Graphics
- Excel - Cross Referencing
- Excel - Printing Worksheets
- Excel - Email Workbooks
- Excel- Translate Worksheet
- Excel - Workbook Security
- Excel - Data Tables
- Excel - Pivot Tables
- Excel - Simple Charts
- Excel - Pivot Charts
- Excel - Keyboard Shortcuts
- MS Excel Resources
- Excel - Quick Guide
- Excel - Useful Resources
- Excel - Discussion
How to calculate the weeks and days between two dates in Excel?
Calculating the number of days, months, years, or weeks that pass between two certain dates may be part of the routine to us. However, have you ever attempted to use Excel to determine the number of weeks and days based on two dates?
In this tutorial, we will use a formula to get the number of weeks and days that exist between any two specific dates. Let’s understand step by step with an example.
Step 1
In the first step, Let’s assume we have a sample data for columnar format. Please refer to the below screenshot.

Step 2
Now, enter the formula into a cell that is blank, which would be cell D2 in this example. Refer to the below screenshot for same.
=INT((C2-B2)/7)&" weeks"&IF(MOD(C2-B2,7)=0,"",", "&MOD(C2-B2,7)&" days")
Here,
B2 is Manufacture date and C2 is Expired date.

Step 3
Then, to use this formula, simply pull the fill handle to the bottom of its range, and the outcome will be exactly what you require. Please check out the screenshot below.

Points to Note
To calculate date − To determine the total number of days that pass between two dates, simply take the beginning date and deduct it from the ending date. In the event that this spans multiple years, you need to determine the total number of full years. Determine the number of months for the remaining portion of the timeframe. Calculate the number of days for the remaining portion of the period.
To Calculate Weeks − To calculate the number of weeks that have passed since two specific dates, we may apply a straightforward formula: count the number of days that separate the two dates, then divide that number by 7. The result of the formula will be a number with decimal places.
Conclusion
This tutorial explained how you can use the features in Excel to calculate the weeks and days between two dates.
- Related Articles
- Calculate the difference between two dates in days, weeks, months and years in Excel
- How to find the number of days and number of weeks between two dates in R?
- How to calculate the midpoint between two dates in Excel?
- How to calculate the percentage between two dates in Excel?
- How to calculate average between two dates in Excel?
- How to list all dates between two dates in Excel?
- How can I calculate full 24hour days between two specified dates in MySQL?
- How do I calculate number of days between two dates using Python?
- How to count days between two dates in Java
- How to calculate the difference between two dates in JavaScript?
- How to get the number of days between two Dates in JavaScript?
- How to calculate minutes between two dates in JavaScript?
- MySQL query to calculate the days between two dates from different columns but similar rows
- Calculate minutes between two dates in C#
- How to calculate time difference between two times or dates?
