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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
MarcinSV
Helper I
Helper I

How to change this SQL into DAX

Hello,

Can I ask you for help with changing this SQL (working OK) into DAX?


SELECT
TIME_STAMP_DATE

, DMS_DATABASE_ID

, DATABASE_NAME

, BLOCKED_CLIENTAPP

, BLOCKING_CLIENTAPP

,SUM(I)

FROM (

SELECT TIME_STAMP_DATE

, DMS_DATABASE_ID

, DATABASE_NAME

, BLOCKED_CLIENTAPP

, BLOCKING_CLIENTAPP

, COUNT(DISTINCT TRANSACTION_ID) AS I

FROM [dbo].[AP_SVA_SOURCE_REPORT_MONITORING_SVBlocking]

 

GROUP BY TIME_STAMP_DATE

, DMS_DATABASE_ID

, DATABASE_NAME

, BLOCKED_CLIENTAPP

, BLOCKING_CLIENTAPP

, TRANSACTION_ID

, BLOCKED_SPID

) AS T

 

GROUP BY TIME_STAMP_DATE

, DMS_DATABASE_ID

, BLOCKED_CLIENTAPP

, BLOCKING_CLIENTAPP

, DATABASE_NAME

 

 

I have one table with analitycal data, and I like to have another column (I) which contains quantity but grouped by Data, DMS ID, Blocked clienttapp, blocking client app, database name. So instead analytical i.e. 30 rows I'd like to have only grouped rows in new table with quantity.

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@MarcinSV You can either achieve in Power Query Editor using "Group By" option or In DAX try using SUMMARIZE / SUMMARIZECOLUMNS / GROUPBY functions. If you are looking for exact solution, then please try to post the sample test data and expected output which will be helpful.





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

2 REPLIES 2
PattemManohar
Community Champion
Community Champion

@MarcinSV You can either achieve in Power Query Editor using "Group By" option or In DAX try using SUMMARIZE / SUMMARIZECOLUMNS / GROUPBY functions. If you are looking for exact solution, then please try to post the sample test data and expected output which will be helpful.





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




Thank you for good direction, I'm working on it 🙂

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.