Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi everyone,
I am having some issues with the Summarize function as it is not giving the correct value for a specific measure. I'll explain below.
I have a sample HR table where a person has one row/record per month.
I have the following calculation:
MyCalculation = COUNTX( FILTER( SUMMARIZE('Sample data';'Sample data'[userID]; "Leave";SUM('Sample data'[leaveDays]); "UnitChange";CALCULATE(DISTINCTCOUNT('Sample data'[Unit]);ALL('Sample data'[Unit]))); [Leave]<=2 && [UnitChange]<2); [Leave])
The bolded part above is supposed to count how many Units a userID has belonged to(as per the summarize function).
However, upon inspection all userIDs get assigned value 1 on UnitChange(1 is the least they can have) even in cases where they actually have a higher number.
So Summarize does not seem to calculate the correct value for the UnitChange measure..
I've been stuck on this for a while now.. Anyone have an idea?
Thank you
Solved! Go to Solution.
Hi @Anonymous
The below article explains how Summarize works, the common practice is to use summarize for group by and then ADDCOLUMN() for Aggregations.
https://www.sqlbi.com/articles/all-the-secrets-of-summarize/
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
The below article explains how Summarize works, the common practice is to use summarize for group by and then ADDCOLUMN() for Aggregations.
https://www.sqlbi.com/articles/all-the-secrets-of-summarize/
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for the article!
It makes perfect sense now.
Although it seems Summarizedcolumns seems to be amore efficient way to use this.
Will look into it
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.