Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
hi there i have the below
id value
1 5
1 5
2 3
3 1
4 6
4 6
i need to create a card that shows the sum of the value field. Currently it is showing (5+5+3+1+6+6 = 26). I need it to take the distinct of id and give me the total which should be (5+3+1+6 = 15)
please help.
Solved! Go to Solution.
@RedDragon , Test as
sumx(values(Table[ID]), max(Table[Values]))
O
sumx(summarize(Table, [ID], [Value]),[Value])
@RedDragon , Test as
sumx(values(Table[ID]), max(Table[Values]))
O
sumx(summarize(Table, [ID], [Value]),[Value])
thank you so much. this one worked!😀
@RedDragon Try:
Measure = SUMX(DISTINCT('Table'),[Value])
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.