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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
shawn3474
Frequent Visitor

Count based of Uniques based on another Column

I have the information in table 1 (first two columns) on the left.  I am trying to get the counts as listed in table 2 (two columns on the right).  

 

Project_NameHas Work to Complete TeamCount of Projects Still Being Worked On
Project AWindows Windows2
Project AWindows Network1
Project AWindows Unix1
Project AWindows   
Project AWindows   
Project A    
Project A    
Project BWindows   
Project BNetwork   
Project BUnix   
Project BWindows   
Project BNetwork   
Project BUnix   
Project B    
1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @shawn3474,

 

On a table just add both columns on your table starting by the Has Work to Complete, then do a summarization by distinct count of Project_Name will give you the expected result.

 

If you want you can also make a measure and then add it along with the Team column in a table:

Group count = CALCULATE(DISTINCTCOUNT(Projects[Project_Name]))

group.gif

 

Regards,

MFelix

 

 

Regards,

MFelix


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @shawn3474,

 

On a table just add both columns on your table starting by the Has Work to Complete, then do a summarization by distinct count of Project_Name will give you the expected result.

 

If you want you can also make a measure and then add it along with the Team column in a table:

Group count = CALCULATE(DISTINCTCOUNT(Projects[Project_Name]))

group.gif

 

Regards,

MFelix

 

 

Regards,

MFelix


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors