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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
In the picture below there are id's and their size. I'd like to sum all the sizes of each I'd without grouping in Power Query. I'm thinking about two possibilities but correct me if I'm wrong.
1. Choosing one size for each id and sum them
2. Adding all Sizes for every id and dividing them by the amount of id's
The total must be 10 however and also when adding rows to a matrix.
Thanks in advance!!
Solved! Go to Solution.
Hi @Anonymous,
Try these two measures, please.
Measure = SUMX ( DISTINCT ( 'Table1' ), [Size] )
Measure 2 = SUMX ( SUMMARIZE ( 'Table1', Table1[_ID], Table1[Size] ), [Size] )
Best Regards,
Dale
Hi @Anonymous,
Try these two measures, please.
Measure = SUMX ( DISTINCT ( 'Table1' ), [Size] )
Measure 2 = SUMX ( SUMMARIZE ( 'Table1', Table1[_ID], Table1[Size] ), [Size] )
Best Regards,
Dale