Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a star schema
and some DAX
No Closed Issues = CALCULATE([Total Issues],'Dim Issue.[Status]' = "Closed")
And I have the following
ID SubID Status
1 1a Open
1 1b Open
1 1c Open
1 1d Open
1 1e Closed
And Im getting this (I dont like this table but its what is wanted)
ID Status NoOpen NoClosed
1 Open 5 6
1 Closed 1 6
So 6 is showing for both
And I need this
ID Status NoOpen NoClosed
1 Open 5 0
1 Closed 0 5
Yep I dont like it either. But Is there a way i can do this by amending the above DAX
Solved! Go to Solution.
Hi @DebbieE
You have to make open and close measure like below.
Hi @DebbieE
You have to make open and close measure like below.
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 32 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 38 | |
| 27 | |
| 24 |