Forum Discussion
Count in Matrix visual
Hi,
I have a scenario where i have 3 tables for data in tables A, B and C with multiple codes. I am using matrix visual to count of Id AA, BB and CC. I have tried using All, AllSelected & All except in measures.
Model is as follows:
Note: Below Expected result is what i need to get. Column AA and BB does not count all respective rows.
Please help me to get the overall total
Thanks.
Cheers
Henrik
- Anonymous3 years ago
Thank you for your reply.
3 Replies
- Greg_DecklerCommunity Champion
Anonymous First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882
Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.- AnonymousNot applicable
Hi Greg_Deckler
Thanks for your reply and links.
m_act = COUNTROWS('AA')m_Total 1 =VAR __table = SUMMARIZE('AA',[A],"__value",[m_act])RETURNIF(HASONEVALUE('AA'[A]),[m_act],SUMX(__table,[__value]))As you see below, it is not calculating the total of rows. Sum should be equal 8.CheersHenrik- AnonymousNot applicable
Thank you for your reply.