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
I have a complex situation. Im trying to calculate sum of Pillar Score by Unique ID (Screenshot below). I want DAX to calculate only the sum of 2 values and display on all rows. (Screenshot below)
Required Output:
Current Output:
DAX Expressions:
Pillar Score:
Solved! Go to Solution.
pls try this
Measure = sumx(FILTER(all('Table'),'Table'[Unique ID]=max('Table'[Unique ID])),[pillar score2])
Proud to be a Super User!
Hi,
Try this calculated column formula
=CALCULATE(SUM('Table'[Pillar Score]), FILTER('Table', 'Table'[Unique ID] = EARLIER('Table'[Unique ID])))
Hope this helps.
pls try this
Measure = sumx(FILTER(all('Table'),'Table'[Unique ID]=max('Table'[Unique ID])),[pillar score2])
Proud to be a Super User!
User | Count |
---|---|
67 | |
61 | |
47 | |
34 | |
32 |
User | Count |
---|---|
87 | |
72 | |
56 | |
49 | |
45 |