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

Custom column to count number of unique occurrences of a key value for a PK column

In PowerQuery I want to add a custom column that provides total number of unique occurences of a key value for a primary key column 

 

For example,  new custom column(Count) should be created based on total number of unique occurences of ID for a certain Key
Below screen shot is what I'm trying to create

 

blokesh23_0-1644262390371.png

 

1 ACCEPTED SOLUTION
sevenhills
Super User
Super User

Try this:

 

ID Count per Key = 
CALCULATE(
	DISTINCTCOUNT('TableKeyCountMeasure'[ID]),
	Allexcept('TableKeyCountMeasure', 'TableKeyCountMeasure'[Key])
)
 

 

 

View solution in original post

3 REPLIES 3
sevenhills
Super User
Super User

Try this:

 

ID Count per Key = 
CALCULATE(
	DISTINCTCOUNT('TableKeyCountMeasure'[ID]),
	Allexcept('TableKeyCountMeasure', 'TableKeyCountMeasure'[Key])
)
 

 

 

AWESOME !!

Anonymous
Not applicable

Thanks for the help, this works as expected

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