Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a calculated column in my data set (DataTable2019 Test) which is looking at a date column (History Date) subtracting one year from the date and then returning a custom formatted date. For full context here I'm trying to show the Jan 1st dates as the year end (YE) count for that given year.
This is the formula below:
Solved! Go to Solution.
I'm guessing your date table doesn't have dates prior to 2020. DATEADD doesn't work by adding or subtracting from a given date, it returns a result from your date table shifted by the interval you've specified. If no dates exist prior to 2020, you won't get a result. Take a look at the DATEADD documentation for more info.
DATEADD function (DAX) - DAX | Microsoft Docs
Hey,
Try adding .[Date] to your date column name while using it to create a DAX.
For example,
I had the same issue with DATEADD and adding multiple years to a certain column. EDATE works perfect in this case EDATE(<date-field, ,nr of months>)
I'm guessing your date table doesn't have dates prior to 2020. DATEADD doesn't work by adding or subtracting from a given date, it returns a result from your date table shifted by the interval you've specified. If no dates exist prior to 2020, you won't get a result. Take a look at the DATEADD documentation for more info.
DATEADD function (DAX) - DAX | Microsoft Docs
That makes sense, thank you.
is there another function that can just subtract 1 year from the date in the history table?
so for the 2020 dates in my table, they would return a result of "YE 2019".
Take a look at the EDATE function
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
16 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
8 |