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,
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.
Solved! Go to Solution.
@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.
Proud to be a PBI 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.
Proud to be a PBI Community Champion
Thank you for good direction, I'm working on it 🙂
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 |
---|---|
72 | |
68 | |
53 | |
39 | |
33 |
User | Count |
---|---|
70 | |
63 | |
57 | |
49 | |
46 |