This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I can't achieve the last column "Sum Of The Parent":
| Parent | Client | Value | Sum Of The Parent |
| 1 | 1 | 5 | 68 |
| 1 | 2 | 51 | 68 |
| 1 | 3 | 12 | 68 |
| 2 | 4 | 9480 | 29608 |
| 2 | 5 | 20000 | 29608 |
| 2 | 6 | 128 | 29608 |
Like above... My goal is to display the SUM for where parent =1, for where parent =2 and so on...
How can I achieve it in DAX?
Hi @Anonymous
Can you please try below DAX for measure
Measure = CALCULATE(
SUM('Table'[Value]),
ALLEXCEPT('Table','Table'[Parent]))
If solve the requirement, please mark this answer as a solution.
Proud to be a Super User! | |
Hi,
do you want it as a column or a measure?
It doesnt matter as long as I can display it in a table like the above...
I think it has to be a column for it to work...
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |