Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi there,
I have a matrix with a variety of values as you can see in the screenshot below. I would like to take the total value circled in red and divide it by 7.5 and display it as a card. Is there a way to call this specific value and do this using a measure/column?
Thanks for the help!
Solved! Go to Solution.
Hi , @Anonymous
According to your description, you want to "take the total value circled in red and divide it by 7.5 and display it as a card".Right?
Here are the steps you can refer to :
(1) This is my test data:
I create a measure put in the Matrix visual:
Sum Measure = SUM('Table'[Value])+0
(2)We can create a measure to put on the card visual (you can update the dax based on your specific table name and column name in your side):
Measure = DIVIDE( SUMX(ALL('Table'[Name]) , 'Table'[Sum Measure]) , 7.5)
Then we can get your need:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @Anonymous
According to your description, you want to "take the total value circled in red and divide it by 7.5 and display it as a card".Right?
Here are the steps you can refer to :
(1) This is my test data:
I create a measure put in the Matrix visual:
Sum Measure = SUM('Table'[Value])+0
(2)We can create a measure to put on the card visual (you can update the dax based on your specific table name and column name in your side):
Measure = DIVIDE( SUMX(ALL('Table'[Name]) , 'Table'[Sum Measure]) , 7.5)
Then we can get your need:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Anonymous , for Total both row and column field are not in scope
if(not(isinscope(Table[Row Field])) && not(isinscope(Table[Month Year])) , [New total measure], [Meausre])
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
IsInScope - Switch Rank at different levels: https://youtu.be/kh0gezKICEM
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 43 | |
| 41 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 188 | |
| 118 | |
| 96 | |
| 64 | |
| 45 |