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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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])
)
 

 

 

Anonymous
Not applicable

AWESOME !!

Anonymous
Not applicable

Thanks for the help, this works as expected

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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