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
How can I display the below table in a pbix?
| Parent | Client | Value | Sum Of The Parent |
| 1 | 1 | 5 | 68 |
| 1 | 2 | 51 | 68 |
| 1 | 3 | 12 | 68 |
| 2 | 4 | 1 | 3 |
| 2 | 5 | 1 | 3 |
| 2 | 6 | 1 | 3 |
I have the data for Parent,Client and Value... but I am trying to display the same for the same parent on all rows...
Hi @Anonymous
Can you please try
Measure = CALCULATE(
SUM('Table'[Value]),
ALLEXCEPT('Table','Table'[Parent]))
Proud to be a Super User! | |
@Anonymous , If you need sum of parent
You can get a new measure
= calculate(sum(Table[Value]), filter(allselected(Table), Table[Parent] = max(Table[Parent]) ) )
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.