Calculations With Date In Excel

Complete Excel VBA Course

Dates function also be used to subtract the Year, Month and Days from the existing dates. Sometimes we need to subtract specific period from the date. In case you are working on large database, this become tedious job for calculating date difference

Here we discussed the various scenarios where we can subtract the period from the dates. These are the simple formulas which will help you to perform these calculations with just few steps

How to add and subtract dates, days, weeks, months and years in Excel?

We can subtract any number of years from the existing date and as part of example we will be following below Syntax to subtract the “5” years from the date

Complete Excel VBA Course
Syntax: =DATE(YEAR(A2)-5,MONTH(A2),DAY(A2))
Calculations with Date in Excel

In the above example, we are subtracting 5 years from 19th Sep 2019 and output will be 19th Sep 2014 (i.e. Year 2019 (-) 5 Years= 2014)

Adding Years in Dates: Below Syntax will be used to add “5” Years in the existing date

Syntax: =DATE(YEAR(A2)+5,MONTH(A2),DAY(A2))
Adding Years in Dates

In the above example, we are adding 5 years in 19th Sep 2019 and output will be 19th Sep 2024 (i.e. Year 2019 + 5 Years= 2024)

Below Syntax will be used to subtract “5” months from the date

Syntax: =DATE(YEAR(A2),MONTH(A2)-5,DAY(A2))
Subtracting Months from Date

In the above example, we are subtracting 5 months from 19th Sep 2019 and output will be 19th April 2019 (i.e. Sep Month (i.e. 9th Month) -5 Months= April (i.e. 4th Month))

Below Syntax will be used to add “5” months in the date

Syntax =DATE(YEAR(A2),MONTH(A2)+5,DAY(A2))
Adding Months in Dates

In the above example, we are adding 5 months in 19th Sep 2019 and output will be 19th Feb 2020 (i.e. Sep Month (i.e. 9th Month) +5 Months= Feb (i.e. 2th Feb of next year))

Below Syntax will be used to subtract “5” days from the date

Syntax: =DATE(YEAR(A2),MONTH(A2),DAY(A2)-5)
Subtracting Days from Date

In the above example, we are subtracting 5 days from 19th Sep 2019 and output will be 14th Sep 2019 (i.e. 19th Sep -5 Days= 14th Sep)

Below Syntax will be used to add “5” days in the date

Syntax =DATE(YEAR(A2),MONTH(A2),DAY(A2)+5)
Adding Days in Date

In the above example, we are adding 5 days in 19th Sep 2019 and output will be 24th Sep 2019 (i.e. 19th Sep +5 Days= 24th Sep)

How to calculate the difference between two dates?

Calculating days between two different dates are most common function that is used in Microsoft excel. I saw many users tries various complex method to calculate the difference but this is really a simple math calculations

We just need to place an excel formula i.e. “= Latest Date – Oldest Date”

Calculate Difference between Two Dates:
Calculate Difference between Two Dates:

Recommended Articles

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *