Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |