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! Learn more
Hi Experts,
As I have come across one scenario where I have to show the sum of TOTAL coming from matrix visual( different matrix) in different card visual so please can anyone help me on this and do the needful.
Thanks in Advance
Kousar
Solved! Go to Solution.
Hi @kousar99 ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Group2],'Table'[Amount])
2. Create measure.
Measure_Validation =
CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Group1]="Validation"))Measure_QA =
CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Group1]="QA"))Measure_all =
CALCULATE(SUM('Table'[Amount]),ALLSELECTED('Table'))
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @kousar99 ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Group2],'Table'[Amount])
2. Create measure.
Measure_Validation =
CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Group1]="Validation"))Measure_QA =
CALCULATE(SUM('Table'[Amount]),FILTER(ALLSELECTED('Table'),'Table'[Group1]="QA"))Measure_all =
CALCULATE(SUM('Table'[Amount]),ALLSELECTED('Table'))
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @kousar99 ,
Your picture is not very clear, but you might try this:
Visual total = SUM('Sample'[Column2]) +SUM('Sample'[Column3])
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!
Hi Nathaniel_C
Thanks for your response, but i want to do it matrix total below find the image for your reference
Hi Experts,
As I have come across one scenario where I have to show the sum of TOTAL coming from matrix visual( different matrix) in different card visual so please can anyone help me on this and do the needful.
Thanks in Advance
Kousar
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.