The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!