Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Keep one column (ID) distinct, count another column

Hi guys,

 

For some reason this seamingly simple task does not get to work.

I have a table that looks like this.

Action_ID  Group     Status   Description
  1                 A          Active          X
  1                 A          Active          Y
  2                 B          Pending       X
  2                 B          Pending       Y

I am trying to create a matrix per group and status:  
           Status        Active    Pending
Group 
   A                           1                0
   B                            0               1 

 

For this, I need to have keep the Action_ID distinct. How do I do this? I tried this, but it did not work:

CALCULATE(COUNT(Table; 'Table'[Status]); DISTINCT('Table'[Action_ID]))



1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi ChrisB1,

Because the some records don't eist in table, when you calculate this in Matrix, it won't show 0. You need to create a table like below

Table 2 = VALUES('Table (4)'[Status])

Create relationship like below on Status

355.PNG

Then use measure like below

Measure = DISTINCTCOUNT('Table (4)'[Status])+0

You will get the result like below

356.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
dax
Community Support
Community Support

Hi ChrisB1,

Because the some records don't eist in table, when you calculate this in Matrix, it won't show 0. You need to create a table like below

Table 2 = VALUES('Table (4)'[Status])

Create relationship like below on Status

355.PNG

Then use measure like below

Measure = DISTINCTCOUNT('Table (4)'[Status])+0

You will get the result like below

356.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

Count Distinct in above will make it 1

Screenshot 2019-09-11 21.57.24.png

Nathaniel_C
Super User
Super User

Hi @Anonymous ,

It actually looks like this as A has two Active. I just dragged the fields onto the matrix and use count.

 

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel

active.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




jdbuchanan71
Super User
Super User

Hello @Anonymous 

Action Count = DISTINCTCOUNT ( 'Table'[Action_ID] )

Then put the group in the rows and status in the columns with this measure in the values.  Should get you what you are looking for.

amitchandak
Super User
Super User

Are you using the matrix table?

In matrix table, you drag group on row and status and column and action_id in value and click on arrow and change agg to count distinct

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.