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,
Any help with this, I would really apprecaite it.
I have this 3 Matrix table
I want to get the percentage of the two numbers highlighted in yellow in another matrix table right under this one.
any quick way to do this? for the first matrix, Rows is from a table 'GIACT_CODE_DESC'[MESSAGE_FOR_OPS], Columns is from DimDate Table and Values is from Table 'Submitted_Policies'[POLICY_NUM] and same with the third Matrix.
HI @fbostan1,
You can't directly calculate across different visuals, they have particular row context based on filter effects.
If you want to calculate these differences, you need to manually aggregate records with similar filter effects and category groups to restore corresponding row context to calculate with the current expressison.
All the secrets of SUMMARIZE - SQLBI
Regards,
Xiaoxin Sheng
Assumin the values displayed are the measure [Values]
Try
% over all Message_for_ops =
VAR _All =
CALCULATE ( [Values], ALL ( Table[MESSAGE_FOR_OPS] ) )
RETURN
DIVIDE ( [Values], _ALL )
Proud to be a Super User!
Paul on Linkedin.
I figured that part out, I just updated my question.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 144 | |
| 123 | |
| 103 | |
| 79 | |
| 54 |