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
Samuel7265
Frequent Visitor

Index Column Groupby() and currentgroup()

Hi all, i have a table with the columns ID and Category.  The goal is to create a new table that lists the IDs, and an index of the number of categorys an ID had in its lifetime.

 

Example:

 

Data Table

ID / Category 

00001 / SWF Info

00001 / Response FOMA

00001 / Creditreform

00001 / Legal IKU

00001 / Bankcrupcy

 

Desiered Result should be:

ID / Index

00001 / 5

 

 

I tried this

Samuel7265_0-1692018840021.png

 

 

1 ACCEPTED SOLUTION

Hi @Samuel7265 I am not familiar with your model, if it is simply like your example with 2 columns, possible solution could be  measeure 

Index Test = COUNTROWS('Sheet1 (2)')

Replace Sheet1 (2) with your table name. Hope this help

some_bih_0-1692100331806.png

 





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

Proud to be a Super User!






View solution in original post

4 REPLIES 4
some_bih
Super User
Super User

Hi @Samuel7265 It seems you need to  use DISTINCTCOUNT function over your column Category?

Check link below. 

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

https://learn.microsoft.com/en-us/dax/distinctcount-function-dax?WT.mc_id=DP-MVP-4025372 





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

Proud to be a Super User!






Thanks for your answer. DISTINCTCOUNT cant be used in the context of GROUPBY().

 

Hi @Samuel7265 I am not familiar with your model, if it is simply like your example with 2 columns, possible solution could be  measeure 

Index Test = COUNTROWS('Sheet1 (2)')

Replace Sheet1 (2) with your table name. Hope this help

some_bih_0-1692100331806.png

 





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

Proud to be a Super User!






Hi @Samuel7265 If this is solution, please accept it so other member of community could use it. Thank you





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

Proud to be a Super User!






Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors