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
valcat27
Helper III
Helper III

Count of distinct values by ID based on another table

Hello all,

 

I have two tables: Sales and Store tables. Both have multiple columns and they are related by the "StoreID" column. 

Below you can see a sample of that. 

 

Sales Table

valcat27_4-1614621274710.png

 

Store Table

valcat27_1-1614621145735.png

 

I want to create a new column in the Store table with the number of products by store, based on Sales table.  The "ProductID" column can have nulls and duplicate values, so I think the most suitable count is distinctcount. 

 

This is what I want:

valcat27_3-1614621210910.png

 

Can anyone help me writing the right formula?

 

Thanks in advance. 

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Given the relationship, I think you can just write

Product_count = CALCULATE ( DISTINCTCOUNT ( Sales[ProductID ) )

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

Given the relationship, I think you can just write

Product_count = CALCULATE ( DISTINCTCOUNT ( Sales[ProductID ) )

Hello @AlexisOlson ,

 

Thank you for your help! It works.

I had selected a wrong table with a similar name and that's why it was not working. 

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.

Top Solution Authors