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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

MySQL to DAX conversion

Please help me convert this MYSQL query to DAX. 

 

 


select year(datereceived) as year, month(datereceived) as month,count(*)
from SampleTable
where (datereceived >= DATE_ADD(LAST_DAY(DATE_SUB(NOW(), INTERVAL 2 MONTH)), INTERVAL 1 DAY)
and datereceived < DATE_ADD(LAST_DAY(DATE_SUB(NOW(), INTERVAL 1 MONTH)), INTERVAL 1 DAY))
and statuscode in(1000, 2000, 3000, 4000, 5000)
group by year, month
order by year,month

 

Thanks in Advance!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous Seem like you need a month behind sales. Or last month sales, Use time intellignece for that

MTD Sales = CALCULATE(countrows(Table)]),DATESMTD('Date'[Date]),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last MTD Sales = CALCULATE(countrows(Table)]),DATESMTD(dateadd('Date'[Date],-1,MONTH)),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last MTD (complete) Sales =  CALCULATE(countrows(Table)]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last year MTD Sales = CALCULATE(countrows(Table)]),DATESMTD(dateadd('Date'[Date],-12,MONTH)),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last year MTD (complete) Sales =  CALCULATE(countrows(Table)]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-12,MONTH))),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
Month behind Sales = CALCULATE(countrows(Table)]),dateadd('Date'[Date],-1,Month),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})

2nd last MTD Sales = CALCULATE(countrows(Table)]),DATESMTD(dateadd('Date'[Date],-2,MONTH)),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
2 Months behind Sales = CALCULATE(countrows(Table)]),dateadd('Date'[Date],-2,Month),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})

 

 

The column of group will be used in viual as axis/row etc. And should part of your date table

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184


Appreciate your Kudos.

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous Seem like you need a month behind sales. Or last month sales, Use time intellignece for that

MTD Sales = CALCULATE(countrows(Table)]),DATESMTD('Date'[Date]),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last MTD Sales = CALCULATE(countrows(Table)]),DATESMTD(dateadd('Date'[Date],-1,MONTH)),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last MTD (complete) Sales =  CALCULATE(countrows(Table)]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last year MTD Sales = CALCULATE(countrows(Table)]),DATESMTD(dateadd('Date'[Date],-12,MONTH)),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
last year MTD (complete) Sales =  CALCULATE(countrows(Table)]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-12,MONTH))),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
Month behind Sales = CALCULATE(countrows(Table)]),dateadd('Date'[Date],-1,Month),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})

2nd last MTD Sales = CALCULATE(countrows(Table)]),DATESMTD(dateadd('Date'[Date],-2,MONTH)),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})
2 Months behind Sales = CALCULATE(countrows(Table)]),dateadd('Date'[Date],-2,Month),Table[statuscode] in {1000, 2000, 3000, 4000, 5000})

 

 

The column of group will be used in viual as axis/row etc. And should part of your date table

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

See if my webinar on Time Intelligence can help: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184


Appreciate your Kudos.

parry2k
Super User
Super User

@Anonymous Unfortunately it is hard to provide a solution based on your SQL, I would recommend, paste your sample data and expected output and that is the better approach rather converting SQL to Dax, these are two different things. 

 

SQL statement pulls a static data, DAX is where people are interactive with visual and expected to see correct numbers as they interact with visual, which is not applicable for SQL. 

 

Read this post to get your answer quickly.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.