Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a dataset that creates a matrix with counts that looks like this:
Auditor | No | Yes | Total |
2 | 30 | 3 | 33 |
4 | 6 | 6 | |
5 | 1 | 1 | 2 |
Total | 37 | 4 | 41 |
This is the DAX that does NOT do what I want:
I want to create a measure that gives subtotals irrespective of auditor. I want it to look like this, but I am doing something wrong. Can you please assist? Link to sample file: https://kauffman.box.com/s/2n6ccf18xkfzrmxopltujibbasxeqbrr
Auditor | no | Yes | Total |
2 | 37 | 4 | 41 |
4 | 37 | 4 | 41 |
5 | 37 | 4 | 41 |
Total | 37 | 4 | 41 |
Solved! Go to Solution.
Hi,
This measure works
Cases WRT Auditor = CALCULATE([Cases],ALLSELECTED(FINANCIAL_STATEMENTS[Auditor ID]))
Hope this helps.
Hi,
This measure works
Cases WRT Auditor = CALCULATE([Cases],ALLSELECTED(FINANCIAL_STATEMENTS[Auditor ID]))
Hope this helps.
Thank you! I see that I was mixing the lookup Auditor ID with the fact table Auditor ID. I appreciate the help!!
You are welcome.
Cannot reproduce. Something else must be going on (for example in your [Cases] measure).
My Cases Is using COUNTROWS(). Could that be the problem?
Countrows of what? The Cases table? How is it wired in the data model?
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
44 | |
41 | |
39 | |
36 |