Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
If I have a table like
Col1 Col2
a 1
a 1
a 1
b 3
b 3
b 3
c 5
c 5
How would I calculate the sum of Col2 based on unique Col1 (i.e in this example sum = 9)
I have tried
and calculate(sum('table'[Col2], filter('table', distinct('table'[Col1]))))
Solved! Go to Solution.
In your data, if Col1 is a, will Col2 always be 1?
If not, you'll need to figure out some way to decide which Col2 is the correct value to use in the sum. Otherwise, you can use this:
SumByCategory = SUMX(DISTINCT(Table[Col1]),FIRSTNONBLANK(Table[Col2],[Col2]))
Thanks, that works!
User | Count |
---|---|
119 | |
78 | |
59 | |
52 | |
48 |
User | Count |
---|---|
171 | |
118 | |
60 | |
59 | |
54 |