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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Anonymous
Not applicable

Distinct Count of Two Columns

Hello all, 

 

I have a Booking Table where I have a Booking ID and a Departure ID for each booking. 

 

I need a measure to calculate the no. of legs which should be the Distinct Depature ID for each Booking ID. 

 

I'm using the following DAX but I don't think I'm getting the correct figure
COUNTROWS(SUMMARIZE(Booking, Booking[Booking ID], Booking[Departure ID]))
 
Thanks in advance!
2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , Try with Departure id?

COUNTROWS(SUMMARIZE(Booking, Booking[Booking Reference], Booking[Departure ID]))

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

Anonymous
Not applicable

Hi @Anonymous ,

 

My sample data is this

Screenshot 2021-04-06 145911.png

 

The measure

DistinctCount =
CALCULATE (
    DISTINCTCOUNT ( 'Booking Table'[Booking ID] ),
    ALLEXCEPT ( 'Booking Table', 'Booking Table'[Departure ID] )
)

Screenshot 2021-04-06 150322.png

 

You can check details from the attachment.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

My sample data is this

Screenshot 2021-04-06 145911.png

 

The measure

DistinctCount =
CALCULATE (
    DISTINCTCOUNT ( 'Booking Table'[Booking ID] ),
    ALLEXCEPT ( 'Booking Table', 'Booking Table'[Departure ID] )
)

Screenshot 2021-04-06 150322.png

 

You can check details from the attachment.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Anonymous , Try with Departure id?

COUNTROWS(SUMMARIZE(Booking, Booking[Booking Reference], Booking[Departure ID]))

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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