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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
ManEff
Frequent Visitor

DATEADD function (DAX) - not showing post year 2000 calculations

Hello - I was wondering if anyone had experienced an issue with DATEADD function and calculations NOT showing post year 2000 dates. My new column calculation appears to work (using the following formula to add 5 years to a start date):

Halfway = DATEADD(Plans[Start Date],+5,year)

 

but as can be seen in the table below the calculation only appears to work for resulting calculated dates pre the year 2000.

 

ManEff_0-1605499061667.png

 

Hope that makes sense. Any experience/assistance to resolve this would be appreciated. Thanks, Tom.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@ManEff , DATEADD needs continuous dates. so if the date is not there in the table/calendar table it will not show data. You can use the date as dateadd, if needed

 

date(year(Plans[Start Date])+5,month(Plans[Start Date]), day(Plans[Start Date]))

 

https://www.youtube.com/watch?v=YWo-ZpKM6gU

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@ManEff , DATEADD needs continuous dates. so if the date is not there in the table/calendar table it will not show data. You can use the date as dateadd, if needed

 

date(year(Plans[Start Date])+5,month(Plans[Start Date]), day(Plans[Start Date]))

 

https://www.youtube.com/watch?v=YWo-ZpKM6gU

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.