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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Nathaniel_C
Community Champion
Community Champion

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.