Forum Discussion

janitor048's avatar
janitor048
Helper I
6 years ago
Solved

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!

  • 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


     

3 Replies

  • Mariusz's avatar
    Mariusz
    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


     

    • janitor048's avatar
      janitor048
      Helper I

      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!

    • eliPR's avatar
      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.