Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
CarlsBerg999
Helper V
Helper V

Add months to date

Hi,

 

Im trying to add dates in a calculated column to a date. For example, I have date 1.5.2021 in Column A and 24 months in column B. I want the result to be 1.5.2023 in column C. However, for some reason DATEADD doesnt seem to work and DATE(year(),month(),day()) doesn't work when the value of months reaches above 12. 

 

Any ideas?

1 ACCEPTED SOLUTION
MikeJohnsonZA
Responsive Resident
Responsive Resident

This can be quite tricky as the dateadd function requires a column reference and that column needs to have the date that would be the result of your addition. The simplest way to do this is to use the EDATE function so some thing like

 

NewDate = EDATE([Column A],[Column B])

 

# EDATE only works for months but that works fine in your case.

View solution in original post

5 REPLIES 5
Jon_vB
Advocate I
Advocate I

For me, I was trying to add 1 to the month inside my Date table definition - so - the fact that DateADD requires a column was annoying, and I couldn't reference the table I was trying to build.  My solution was to use the EOMONTH function (EOMONTH - DAX Guide).

 

(note - this reply was edited - my former answer didn't take into account December to January transition)

 

"YY-MMM Or Current"
    ,IF( TODAY() >= DATE( YEAR([Date]), MONTH([Date]), 1) && TODAY() <= EOMONTH([Date],0)
         , "Current Month"
         , FORMAT(DATE(YEAR([Date]),MONTH([Date]) ,1),"YYYY-MMM")
       )

 

v-jingzhang
Community Support
Community Support

Hi @CarlsBerg999 

Apart from the DAX EDATE([Column A],[Column B]) solution, if possible, you can also add a custom column in Power Query Editor.

= Date.AddMonths([Date],[Months])

041602.jpg

Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.

MikeJohnsonZA
Responsive Resident
Responsive Resident

This can be quite tricky as the dateadd function requires a column reference and that column needs to have the date that would be the result of your addition. The simplest way to do this is to use the EDATE function so some thing like

 

NewDate = EDATE([Column A],[Column B])

 

# EDATE only works for months but that works fine in your case.

selimovd
Super User
Super User

Hey @CarlsBerg999 ,

 

it should work with DATEADD. Try it like this as a calculated column:

MyNewDate = DATEADD('Date'[Date], 24, MONTH)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

Hi, 

For some reason the calculated column returns blank when i do this. The date column is formatted as Date but for some reason refuses to accept any additions in months. I tried adding 2 months but it only worked for one row out of 250. Adding 3 months worked for 2 rows..

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.