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
janitor048
Helper I
Helper I

Distinct count in related table

Suppose I have the following tables

Releases

ReleaseID

A

B
C

 

Tickets

TicketIDReleaseIDStuff
1Axyz1
1Aabc1
2Bxyz2
2Babc2
3Bxyz3
4Cxyz4

Both tables are related in the data modell via the ReleaseID fields, i.e. the relation is 1:m from table Releases to table Tickets.

What I want is a calculated column in Releases that counts the unique occurences of TicketID in table Tickets associated with this ReleaseID. So the result should be

ReleaseID

RelatedTickets

A

1

B2
C1

I can probably do this with explicit DISTINCCOUNT, CALCULATE and FILTER combination. However I would like to make use of the relation of the tables. But I can't get my head around this. I found the DISTINCT COUNT pattern https://www.daxpatterns.com/distinct-count/  however this looks at the RELATED side of the relation, here I would be requiring the RELATEDTABLE side (I guess).

 

Thanks for any hints!

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @janitor048 

 

You can add a column like 

 

Column = CALCULATE( DISTINCTCOUNT( Tickets[TicketID] ) )

 

Or simply use a Measure 

Measure = DISTINCTCOUNT( Tickets[TicketID] ) 
 
Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

View solution in original post

3 REPLIES 3
Mariusz
Community Champion
Community Champion

Hi @janitor048 

 

You can add a column like 

 

Column = CALCULATE( DISTINCTCOUNT( Tickets[TicketID] ) )

 

Or simply use a Measure 

Measure = DISTINCTCOUNT( Tickets[TicketID] ) 
 
Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

eliPR
Frequent Visitor

@Mariusz,

 

Just found this. Was having the same problem as the Janitor. The thing that I don't understand is why I don't have to use the RELATEDTABLE function. I thought that calculated columns disabled filter context. Why in this case does the calculated column apply the filter from the One table to the Many table?

 

Many thanks.

 

@Mariusz that was kind of easy. Don't know why I haven't stumbled across this solution myself. Probably I was too busy trying to somehow get RELATEDTABLE in there...

 

Thanks!

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.