Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
@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.
Hi @Anonymous ,
My sample data is this
The measure
DistinctCount =
CALCULATE (
DISTINCTCOUNT ( 'Booking Table'[Booking ID] ),
ALLEXCEPT ( 'Booking Table', 'Booking Table'[Departure ID] )
)
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.
Hi @Anonymous ,
My sample data is this
The measure
DistinctCount =
CALCULATE (
DISTINCTCOUNT ( 'Booking Table'[Booking ID] ),
ALLEXCEPT ( 'Booking Table', 'Booking Table'[Departure ID] )
)
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.
@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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.