How Do I Calculate Total Days in Excel: A Comprehensive Guide to Mastering Date Calculations

Mastering Date Calculations: How Do I Calculate Total Days in Excel with Precision and Ease?

I remember the early days of working with spreadsheets, particularly when faced with the daunting task of calculating the duration between two dates. It felt like a puzzle, and honestly, it could be frustrating. You'd look at your Excel sheet, with start dates in one column and end dates in another, and the question would inevitably pop up: "How do I calculate total days in Excel?" More often than not, my initial attempts involved some clunky workarounds, maybe even manual counting, which was obviously inefficient and prone to errors. If you've ever felt that same pang of uncertainty, you're certainly not alone. Thankfully, Excel offers incredibly powerful and straightforward ways to tackle this common requirement. This article is designed to walk you through precisely that, ensuring you can confidently calculate total days in Excel, whether it's for project timelines, financial reporting, employee leave tracking, or simply understanding the passage of time.

Understanding the Foundation: How Excel Handles Dates

Before we dive into the "how," it's crucial to understand the "why" behind Excel's date calculations. You see, Excel doesn't actually store dates as "January 1, 2026." Instead, it stores them as sequential serial numbers. The underlying principle is that January 1, 1900, is assigned the serial number 1. Every subsequent day is then represented by the next integer in the sequence. For instance, January 2, 1900, is 2, January 3, 1900, is 3, and so on. This system might seem a bit abstract at first, but it's this very system that allows Excel to perform mathematical operations on dates, including calculating the total number of days between two points in time. This serial number approach is foundational to how you can calculate total days in Excel.

Now, you might be wondering, "What about times?" Excel also handles time as a decimal fraction of a 24-hour day. So, noon (12:00 PM) would be represented as 0.5, 6:00 AM as 0.25, and so forth. When you combine dates and times, Excel uses a combination of the integer (for the date) and the decimal (for the time). This is a critical piece of knowledge that underpins many advanced date and time calculations, although for simply calculating total days, we primarily focus on the date component. It's good to be aware of this, though, especially if your date entries might also include time components and you need to account for them in your total day count.

The Simplest Method: Direct Subtraction

The most intuitive and frequently used method to calculate total days in Excel is by simply subtracting the earlier date from the later date. This is often the first thing people try, and thankfully, it's usually the correct and most efficient approach for calculating the number of days between two specific dates.

Let's imagine you have your start date in cell A1 and your end date in cell B1. To find the total number of days between them, you would enter the following formula into any other empty cell (say, C1):

=B1 - A1

This formula works because, as we discussed, Excel stores dates as serial numbers. By subtracting the serial number of the start date from the serial number of the end date, you are effectively getting the difference between those two serial numbers, which directly translates to the total number of days between them. It's elegantly simple, isn't it?

Important Consideration: Date Formatting

For this direct subtraction method to work flawlessly, ensure that both your start and end date cells are formatted as "Date" in Excel. If they are accidentally formatted as "General" or "Text," Excel might not recognize them as dates, and the subtraction will result in an error or an incorrect numerical value. You can easily check and change the cell format by:

  • Selecting the cell(s) containing your dates.
  • Right-clicking and choosing "Format Cells..."
  • In the "Number" tab, selecting "Date" from the Category list.
  • Choose your preferred date format from the "Type" list.
  • Click "OK."

When you perform the subtraction, the resulting cell (C1 in our example) should also be formatted as a number or general. If it defaults to a date format, it might display a date far in the future, which can be confusing. Simply change the format of the result cell to "Number" or "General" to see the correct total day count.

A Personal Anecdote on Formatting: I once spent a good hour troubleshooting why a date calculation wasn't working, only to realize that one of the date cells had been pasted as text. The frustration was real, but the relief when I corrected the format was immense! It’s a simple step, but oh-so-critical.

Calculating Total Days Including Both Start and End Dates

Sometimes, you need to calculate the total number of days a period *spans*, which means you need to include both the start date and the end date in your count. The simple subtraction method (End Date - Start Date) gives you the number of *full days between* the two dates, but it doesn't count the start date itself as a full day of the duration. To include both the start and end dates in your calculation, you simply add 1 to the result of the subtraction.

Using our previous example with the start date in A1 and the end date in B1, the formula becomes:

=B1 - A1 + 1

This is a common requirement for things like calculating the number of days an employee was on vacation (if you're counting the first and last day of leave) or determining the duration of a project when you want to include both the kickoff and completion dates. For instance, if a project starts on January 1st and ends on January 3rd, simple subtraction (3 - 1) gives you 2 days. But if you need to count January 1st, January 2nd, and January 3rd, that's 3 days. Adding 1 to the result (2 + 1) correctly gives you 3.

Leveraging Excel's Built-in Functions: The DATEDIF Function

While direct subtraction is excellent for calculating the total number of days, Excel offers a more versatile function for date calculations: DATEDIF. This function is a bit of a hidden gem, as it's not always readily available in the function suggestion dropdowns, but it's incredibly powerful for calculating differences between dates in various units – days, months, and years.

The syntax for the DATEDIF function is:

DATEDIF(start_date, end_date, unit)

Where:

  • start_date: The earlier of the two dates.
  • end_date: The later of the two dates.
  • unit: This is a text string that specifies what kind of information you want to return. For calculating total days, we primarily use "d".

Calculating Total Days using DATEDIF:

To calculate the total number of days between a start date in A1 and an end date in B1 (exclusive of the start date, similar to direct subtraction), you would use:

=DATEDIF(A1, B1, "d")

This formula will return the exact same result as `=B1 - A1`. So, why use DATEDIF for days when subtraction is so simple? The real power of DATEDIF emerges when you need to calculate differences in months or years, or when you want to calculate the number of *complete* days, months, or years between two dates. However, for a straightforward "total days" calculation, both methods are valid. The primary reason you might opt for DATEDIF here is consistency if you're already using it for other date difference calculations within your workbook.

Unique Insight: DATEDIF and "Inclusivity"

It's worth noting that DATEDIF's "d" unit behaves like the direct subtraction. It calculates the number of full days between the start and end date. If you need to include both the start and end dates when using DATEDIF to calculate total days, you would again add 1 to the result:

=DATEDIF(A1, B1, "d") + 1

This makes the DATEDIF function, when used with the "d" unit and +1, functionally identical to the direct subtraction method with +1. The key differentiator for DATEDIF lies in its other units.

DATEDIF Units for Months and Years (For Context)

While our focus is on total days, understanding DATEDIF's other units can be beneficial:

  • "m": Returns the number of complete months between the two dates. For example, DATEDIF("2026-01-15", "2026-03-10", "m") would return 1 (only one full month has passed).
  • "y": Returns the number of complete years between the two dates.
  • "ym": Returns the number of months remaining after subtracting complete years.
  • "yd": Returns the number of days remaining after subtracting complete years.
  • "md": Returns the number of days remaining after subtracting complete months and years.

This versatility makes DATEDIF a cornerstone for any complex date-based analysis in Excel. However, for the specific task of calculating total days, the direct subtraction method is often preferred for its sheer simplicity and readability.

Calculating Days with Specific Conditions: Using NETWORKDAYS and NETWORKDAYS.INTL

In many real-world scenarios, you don't just want to calculate the total number of calendar days; you want to calculate the number of *working* days. This means excluding weekends and, optionally, specific holidays. Excel provides two powerful functions for this: `NETWORKDAYS` and `NETWORKDAYS.INTL`.

The NETWORKDAYS Function

The `NETWORKDAYS` function calculates the number of whole working days between two dates. By default, it assumes Saturday and Sunday are non-working days.

The syntax is:

NETWORKDAYS(start_date, end_date, [holidays])
  • start_date: The starting date of the period.
  • end_date: The ending date of the period.
  • [holidays] (Optional): A range of cells or an array constant containing the dates of holidays you want to exclude.

Example:

Let's say your start date is in A1, your end date is in B1, and a list of holidays is in cells D1:D10.

To calculate the number of working days (excluding weekends and the specified holidays):

=NETWORKDAYS(A1, B1, D1:D10)

If you don't have any holidays to exclude, you can omit the third argument:

=NETWORKDAYS(A1, B1)

This function calculates the number of working days *inclusive* of the start and end dates, provided they are not weekends or holidays themselves. If the start or end date falls on a weekend or holiday, it is not counted.

My Experience with NETWORKDAYS: This function has been an absolute lifesaver for project management. Calculating project timelines by simply counting calendar days can be wildly inaccurate. Using `NETWORKDAYS` provides a much more realistic view of how long a project will actually take, considering people don't typically work on weekends or holidays. It’s crucial for setting accurate expectations and resource planning.

The NETWORKDAYS.INTL Function

The `NETWORKDAYS.INTL` function is a more flexible version of `NETWORKDAYS`. It allows you to specify which days of the week are considered weekends, going beyond the standard Saturday-Sunday.

The syntax is:

NETWORKDAYS.INTL(start_date, end_date, [weekend], [holidays])
  • start_date: The starting date of the period.
  • end_date: The ending date of the period.
  • [weekend] (Optional): A number or string that specifies which days are weekend days. This is where the flexibility lies.
  • [holidays] (Optional): A range of cells or an array constant containing the dates of holidays you want to exclude.

Understanding the [weekend] Argument:

You can specify the weekend using a number code or a string:

Number Code Weekend Days
1 Saturday, Sunday (default)
2 Sunday, Monday
3 Monday, Tuesday
4 Tuesday, Wednesday
5 Wednesday, Thursday
6 Thursday, Friday
7 Friday, Saturday
11 Sunday only
12 Monday only
13 Tuesday only
14 Wednesday only
15 Thursday only
16 Friday only
17 Saturday only

Alternatively, you can use a seven-digit string where each digit represents a day of the week, starting with Monday. A "0" means the day is a workday, and a "1" means it's a weekend day. For example, a string of "0000011" would mean Saturday and Sunday are weekends (Monday=0, Tuesday=0, Wednesday=0, Thursday=0, Friday=0, Saturday=1, Sunday=1).

Example using [weekend] Number Code:

If you're in a region where only Sunday is a holiday, and you have holidays listed in D1:D10:

=NETWORKDAYS.INTL(A1, B1, 11, D1:D10)

Example using [weekend] String:

If your work week is Monday to Thursday, with Friday, Saturday, and Sunday as weekends:

=NETWORKDAYS.INTL(A1, B1, "000111", D1:D10)

These functions are indispensable for anyone dealing with project scheduling, payroll calculations, or any scenario where only working days count.

Handling Date Entry Errors and Ensuring Accuracy

One of the most insidious problems when calculating total days in Excel, or any date-related calculation for that matter, is incorrect date entry. Users might type "31/02/2026" (February 31st) or "1-JAN-24" when the system expects "01-JAN-2026." Excel is pretty smart, but it can get confused.

Data Validation for Dates

To prevent errors before they even happen, you can use Excel's Data Validation feature. This allows you to set rules for what kind of data can be entered into a cell.

Steps to Set Up Date Validation:

  1. Select the cell or range of cells where you want to enter dates.
  2. Go to the "Data" tab on the Excel ribbon.
  3. In the "Data Tools" group, click "Data Validation."
  4. In the "Data Validation" dialog box, go to the "Settings" tab.
  5. Under "Allow," choose "Date."
  6. Under "Data," you can select criteria like "between," "not between," "equal to," "before," or "after." For example, to ensure dates are not in the past, you might set "Data" to "greater than" and in the "Start date" box, enter `=TODAY()`. This will prevent users from entering dates before the current date.
  7. (Optional but Recommended) Go to the "Input Message" tab to provide a prompt when a user selects the cell, explaining what kind of data is expected.
  8. (Optional but Recommended) Go to the "Error Alert" tab to customize the message that appears if a user tries to enter invalid data. You can choose the style (Stop, Warning, Information) and write a helpful error message.
  9. Click "OK."

This proactive approach significantly reduces the chances of calculation errors stemming from bad data. It helps ensure that your formula to calculate total days in Excel operates on valid inputs.

Using the IFERROR Function for Robust Calculations

Despite your best efforts with data validation, errors can still creep in. The `IFERROR` function is a fantastic tool for handling these situations gracefully. It allows you to specify what Excel should display if a formula results in an error (like #VALUE!, #DIV/0!, or #N/A!).

The syntax is:

IFERROR(value, value_if_error)

Where:

  • value: The expression you want to evaluate (your calculation).
  • value_if_error: The value to display if the "value" expression results in an error.

Example:

Wrapping our direct subtraction formula:

=IFERROR(B1 - A1, "Invalid Date Input")

If either A1 or B1 contains text or is blank, causing B1 - A1 to result in an error, the cell will display "Invalid Date Input" instead of a cryptic error code. This makes your spreadsheet much more user-friendly and easier to troubleshoot.

Calculating Days Between Dates in Different Years

The methods we've discussed so far—direct subtraction, DATEDIF, NETWORKDAYS, and NETWORKDAYS.INTL—all work perfectly fine when your dates span across different years. Excel's underlying serial number system inherently accounts for leap years and the varying number of days in months.

Example:

Start Date: 2022-12-01 (Cell A1)

End Date: 2026-03-15 (Cell B1)

Using direct subtraction:

=B1 - A1

Excel will correctly calculate the number of days, including those in January, February (2026 is not a leap year), and March. You don't need any special adjustments for calculations spanning years. This is one of the beauties of Excel's date handling.

Calculating Days from a Specific Start Date to Today

A very common requirement is to calculate the number of days that have passed since a specific event or start date up to the current date. Excel has a built-in function for the current date: `TODAY()`.

The `TODAY()` function returns the current date, and it updates automatically whenever the workbook is opened or recalculated. This is incredibly useful for dynamic reporting.

To calculate the total days from a start date in A1 to today:

=TODAY() - A1

To include today in the count (i.e., count today as a full day):

=TODAY() - A1 + 1

If you need to calculate the number of *working* days from a start date in A1 to today, you can use `NETWORKDAYS` or `NETWORKDAYS.INTL`:

=NETWORKDAYS(A1, TODAY(), [holidays])

This is invaluable for tracking project progress, calculating elapsed time for tasks, or monitoring how long something has been "in progress."

Advanced Scenarios and Practical Applications

The ability to accurately calculate total days in Excel opens up a world of possibilities for data analysis and management.

Calculating Age or Duration of Membership

You can easily calculate a person's age or the duration of a membership by using the start date (date of birth or joining date) and the end date (today's date or a specific evaluation date).

Example: If A1 contains a date of birth, to find the age in years and days:

  • Years: =DATEDIF(A1, TODAY(), "y")
  • Remaining days after years: =DATEDIF(A1, TODAY(), "yd")

Project Management and Timeline Analysis

Beyond just calculating working days, you can use date differences to:

  • Calculate the duration of individual tasks.
  • Determine project slippage by comparing planned end dates with actual end dates.
  • Analyze resource allocation by understanding how long specific resources are utilized.

Financial Calculations

In finance, calculating the number of days between two dates is crucial for:

  • Interest Calculations: Many loan and investment interest calculations are based on the number of days money has been held or borrowed.
  • Accruals: For accounting purposes, certain expenses or revenues need to be accrued based on the time they relate to.
  • Lease Agreements: Calculating rental periods.

For financial calculations, you often need to be very precise about which method Excel uses to count days (e.g., 30/360 convention). While the standard Excel date functions use actual calendar days, some financial contexts might require specific conventions. For these, you might need more specialized financial functions or custom logic.

Leave and Absence Tracking

Calculating the total number of days an employee has been absent, whether sick leave, vacation, or other forms of absence, is a common HR task. Using `NETWORKDAYS` or `NETWORKDAYS.INTL` ensures you're only counting actual working days lost, which is often the basis for payroll deductions or leave balance calculations.

Best Practices for Calculating Total Days in Excel

To ensure your date calculations are accurate, efficient, and easy to understand, consider these best practices:

  • Consistent Formatting: Always format date cells as "Date." Use a consistent format (e.g., MM/DD/YYYY or YYYY-MM-DD) throughout your workbook to avoid confusion.
  • Clear Labels: Label your columns clearly (e.g., "Start Date," "End Date," "Total Days," "Working Days").
  • Use Named Ranges: For holiday lists or recurring date ranges, use Named Ranges (Insert > Name > Define or use the Name Box). This makes your formulas more readable and easier to update (e.g., `=NETWORKDAYS(A1, B1, Holidays)` is clearer than `=NETWORKDAYS(A1, B1, D1:D10)` if you forget what D1:D10 represents).
  • Test Your Formulas: Especially when using `DATEDIF` or `NETWORKDAYS.INTL` with custom weekend settings, test your formulas with known date ranges to ensure they produce the expected results.
  • Understand Inclusivity: Be clear about whether you need to include the start date, the end date, or both in your total day count. This will determine whether you add '+1' to your subtraction or use the appropriate function logic.
  • Document Complex Logic: If you have complex date calculations, add comments to your cells or a separate explanation sheet to help yourself and others understand how the calculations work.
  • Leverage `TODAY()` and `NOW()` Carefully: Remember that `TODAY()` updates when the workbook opens or recalculates. `NOW()` (which includes time) also updates. If you need a static date, copy the result of `TODAY()` or `NOW()` and then use "Paste Special" > "Values."

Frequently Asked Questions (FAQs)

How do I calculate the total number of days between two dates in Excel, including weekends?

The most straightforward way to calculate the total number of calendar days between two dates in Excel is by directly subtracting the earlier date from the later date. For instance, if your start date is in cell A1 and your end date is in cell B1, you would use the formula `=B1 - A1`. This formula leverages Excel's internal serial number system for dates, where each day is a sequential number. The subtraction yields the difference in these numbers, which directly corresponds to the number of days. It's important to ensure both cells containing the dates are formatted as "Date" type within Excel for this calculation to work correctly. If the result cell is formatted as a date, you'll need to change it to "General" or "Number" to see the day count.

If you need to include both the start date and the end date in your total count—meaning you want to know the total span of days covered by the period—you simply add 1 to the result of the subtraction. So, the formula would be `=B1 - A1 + 1`. This is often used when calculating the duration of an event or a period where both the first and last day are significant, such as the number of days a hotel room was booked or the length of a training course.

The `DATEDIF` function can also be used for this purpose with the "d" unit: `=DATEDIF(A1, B1, "d")`. This produces the same result as `B1 - A1`. To include both dates with `DATEDIF`, you would also add 1: `=DATEDIF(A1, B1, "d") + 1`. While direct subtraction is often simpler for just calculating total days, `DATEDIF` is incredibly versatile for other date calculations (months, years) and might be preferred for consistency if you're using it elsewhere in your workbook.

How do I calculate the total number of *working* days between two dates in Excel, excluding weekends?

To calculate the number of working days between two dates, excluding standard weekends (Saturday and Sunday), you should use the `NETWORKDAYS` function. This function is designed specifically for this purpose and is incredibly useful for project management, scheduling, and payroll calculations where only business days are relevant.

The basic syntax for `NETWORKDAYS` is: `NETWORKDAYS(start_date, end_date, [holidays])`. Here, `start_date` and `end_date` are the cells containing your respective dates. The `[holidays]` argument is optional; it allows you to provide a range of cells that contain dates of holidays you also want to exclude from the working day count. For example, if your start date is in A1, your end date is in B1, and your list of holidays is in cells D1 through D10, you would use the formula `=NETWORKDAYS(A1, B1, D1:D10)`. If you don't have any holidays to exclude, you can simply use `=NETWORKDAYS(A1, B1)`.

It's important to note that `NETWORKDAYS` counts the number of whole working days within the specified period, inclusive of the start and end dates, provided those dates themselves are not weekends or holidays. If either the start or end date falls on a weekend or a specified holiday, that particular day is not counted towards the total working days. This function is indispensable for getting a realistic view of project timelines or task durations.

For scenarios where weekends might not be Saturday and Sunday, or you have a more complex definition of a working week, Excel offers the `NETWORKDAYS.INTL` function. This function allows you to specify custom weekend days using a number code or a string. For instance, if you only consider Sunday as a weekend day, you'd use the code `11`. If your working week is Monday through Thursday, with Friday, Saturday, and Sunday as weekends, you'd use the string `"000111"`. The syntax is `NETWORKDAYS.INTL(start_date, end_date, [weekend], [holidays])`, offering much greater flexibility for international or company-specific work schedules.

Can Excel calculate the total days between dates that span across multiple years, including leap years?

Yes, absolutely. Excel is inherently designed to handle date calculations across multiple years, including the complexities of leap years, without requiring any special formulas or adjustments for this purpose. This is due to the way Excel stores dates as serial numbers. Each day is assigned a unique sequential number, starting from 1 for January 1, 1900. Excel's date system automatically accounts for the correct number of days in each month and accurately incorporates the extra day in February during leap years (which occur every four years, with exceptions for century years not divisible by 400).

Therefore, whether you are calculating the total days between two dates within the same year, or across several years, the standard methods of direct subtraction or the `DATEDIF` function will work perfectly. For example, to calculate the total days between December 15, 2022, and March 10, 2026, you can simply enter the start date in A1 and the end date in B1 and use the formula `=B1 - A1`. Excel will correctly compute the number of days, factoring in the 366 days of 2026 (since it's a leap year) and the 365 days of 2026.

Similarly, if you are using `NETWORKDAYS` or `NETWORKDAYS.INTL` to calculate working days, these functions also correctly interpret dates across multiple years and account for leap years when determining the number of weekend days and holidays within the period. You don't need to do anything extra; Excel's built-in date logic handles it all. This reliability makes Excel a powerful tool for long-term planning and historical data analysis involving dates.

What is the difference between calculating total days with the subtraction method and using DATEDIF?

When it comes to calculating the total number of days between two dates, the direct subtraction method (`=EndDate - StartDate`) and the `DATEDIF` function with the unit "d" (`=DATEDIF(StartDate, EndDate, "d")`) are functionally identical. Both formulas return the number of full days between the start date and the end date, *excluding* the start date itself. For example, if the start date is January 1st and the end date is January 3rd, both `=B1 - A1` and `=DATEDIF(A1, B1, "d")` will return `2`.

The primary difference lies in their origin and broader capabilities. Direct subtraction is a fundamental arithmetic operation that works because Excel stores dates as serial numbers. It's simple, intuitive, and often the preferred method for this specific task due to its straightforward readability. Anyone familiar with basic arithmetic can understand `=B1 - A1` at a glance.

The `DATEDIF` function, on the other hand, is a dedicated date calculation function. While it yields the same result for calculating days as subtraction, its true power comes from its ability to calculate differences in months ("m"), years ("y"), and the remaining periods after calculating full years or months ("ym", "yd", "md"). It's a more robust and specialized tool for handling various date-difference scenarios. If you are performing multiple types of date calculations within the same spreadsheet (e.g., age in years, months, and days), using `DATEDIF` for all of them can lead to a more consistent and structured approach.

To include both the start and end dates in the total count using either method, you would simply add 1 to the result: `=B1 - A1 + 1` or `=DATEDIF(A1, B1, "d") + 1`. Ultimately, for just calculating total days, the choice between direct subtraction and `DATEDIF` often comes down to personal preference or the overall context of your spreadsheet's calculations.

How can I ensure that my date entries are accurate before calculating the total days in Excel?

Ensuring accurate date entries is crucial for reliable calculations. The most effective way to achieve this is by using Excel's **Data Validation** feature. This tool allows you to set specific rules for data entry in a cell or range, preventing invalid or incorrectly formatted dates from being entered in the first place. To set up date validation, you select the cells you want to apply the rule to, navigate to the 'Data' tab on the Excel ribbon, and click 'Data Validation'.

Within the Data Validation dialog box, you go to the 'Settings' tab and under 'Allow,' you choose 'Date.' You can then specify criteria such as 'greater than,' 'less than,' 'between,' or 'equal to.' For example, to prevent users from entering dates in the past, you could set the criteria to 'greater than' and enter `=TODAY()` in the corresponding date box. This will flag any attempt to enter a date earlier than the current day. Additionally, you can set up 'Input Messages' to guide users on the expected date format and 'Error Alerts' to inform them if they enter invalid data, which is immensely helpful in standardizing entries and minimizing errors.

Beyond Data Validation, maintaining consistent formatting is key. Always format your date cells as 'Date' using a consistent pattern (e.g., MM/DD/YYYY or YYYY-MM-DD). This helps Excel recognize the entries as dates and prevents them from being treated as text or numbers, which would disrupt calculations. If you are importing data, always check the formatting immediately. Sometimes, dates are imported as text, especially if they contain non-standard characters or formats. In such cases, you might need to use text-to-columns or specific formulas like `DATEVALUE` to convert them to actual Excel dates. Utilizing the `IFERROR` function around your date calculation formulas is also a good practice. This allows you to display a user-friendly message (e.g., "Invalid Date") instead of a harsh error code if an incorrect entry does slip through, making your workbook more robust and easier to troubleshoot.

By implementing these measures—Data Validation, consistent formatting, and error handling—you significantly improve the accuracy and reliability of any date calculations, including how you calculate total days in Excel.

How do I calculate total days in Excel

Related articles