Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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