Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi All,
I have this table
I'm trying to reduce Date1 by the Month column and return the results in Date2.
I'm using the formula;
=dateadd(Resign_Append[Date1],-Resign_Append[Month],MONTH)
I have no idea why I'm getting values in some rows of Date2 and not in others (as above).
Any ideas?
Thanks in advance
Solved! Go to Solution.
@PMF99 ,
Here is the formula in DAX:
New Date DAX = VAR _year = YEAR ( Resign_Append[Date1] ) VAR _month = MONTH ( Resign_Append[Date1] ) VAR _day = DAY ( Resign_Append[Date1] ) VAR _monthToSubstract = Resign_Append[Month] RETURN DATE ( _year, _month - _monthToSubstract, _day )
@Anonymous,
DATEADD is a time intelligence function that returns a table, so you will get the incorrect results. You use Date.AddMonths() function in Power Query to substract the month from your date.
Thanks NickNg.
Any idea how do perform this calculation in DAX as I have multiple queries in my model?
@PMF99 ,
Here is the formula in DAX:
New Date DAX = VAR _year = YEAR ( Resign_Append[Date1] ) VAR _month = MONTH ( Resign_Append[Date1] ) VAR _day = DAY ( Resign_Append[Date1] ) VAR _monthToSubstract = Resign_Append[Month] RETURN DATE ( _year, _month - _monthToSubstract, _day )
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 41 | |
| 40 | |
| 39 | |
| 38 |