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,
I have the below sample of data. If I was to sum the below projects data it would give a value 205. However I only want it to display in a card the sum of just 1 line from each project. (Avg of the rows)... 20+25+40+15 = 100. Can anyone give me a pointer on this please?
Project | Value |
1 | 20 |
1 | 20 |
1 | 20 |
2 | 25 |
2 | 25 |
2 | 25 |
3 | 40 |
4 | 15 |
4 | 15 |
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
expected result measure: =
SUMX ( VALUES ( Data[Project] ), CALCULATE ( AVERAGE ( Data[Value] ) ) )
Hi,
Please check the below picture and the attached pbix file.
expected result measure: =
SUMX ( VALUES ( Data[Project] ), CALCULATE ( AVERAGE ( Data[Value] ) ) )
Thank you