Forum Discussion
ManEff
5 years agoFrequent 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 form...
- 5 years ago
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
amitchandak
Super User
5 years agoManEff , 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