Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hello, I am trying to convert the following date function from t-sql to dax:
select
EOMONTH(DATEADD (dd, -1, DATEADD(qq, DATEDIFF(qq, 0, myDateCol) +1, 0)), 1)
;
So far I have DATEDIFF as
DATEDIFF( 0, myDateCol, QUARTER)
however I can't figure out how to do DATEADD. For that I have this:
DATEADD(0, DATEDIFF( 0, myDateCol, QUARTER)+1, quarter)
I got this function from https://dax.guide/dateadd/
I know EOMONTH exists in DAX as show here: https://docs.microsoft.com/en-us/dax/endofmonth-function-dax
I was hoping someone can provide my a hint or help me. Thank you.
Solved! Go to Solution.
@transcend , Assuming you can add three month in place of quarter
Datediff will give number, so not sure how you are using that
Datediff([Date1], [Date2], Day) //in place of date you can use month, quarter, year etc
In place of dateadd, you have to use date
say 3 month in place of quarter
date(Year([MyDate]),Month([MyDate])-1, Day([MyDate]))
Subtract or add days simply
[MyDate] + [Days]
[MyDate]+5
For end of the month
eomonth([MyDate], 0) //current month end date
Date as Dateadd - Decoding Date and Calendar 5-5 - Power BI Turning 5 Celebration Series
https://community.powerbi.com/t5/Community-Blog/Date-as-Dateadd-Decoding-Date-and-Calendar-5-5-Power...
@transcend , Assuming you can add three month in place of quarter
Datediff will give number, so not sure how you are using that
Datediff([Date1], [Date2], Day) //in place of date you can use month, quarter, year etc
In place of dateadd, you have to use date
say 3 month in place of quarter
date(Year([MyDate]),Month([MyDate])-1, Day([MyDate]))
Subtract or add days simply
[MyDate] + [Days]
[MyDate]+5
For end of the month
eomonth([MyDate], 0) //current month end date
Date as Dateadd - Decoding Date and Calendar 5-5 - Power BI Turning 5 Celebration Series
https://community.powerbi.com/t5/Community-Blog/Date-as-Dateadd-Decoding-Date-and-Calendar-5-5-Power...
Thank you.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
12 | |
11 | |
9 | |
9 |