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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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