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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
H3nning
Helper V
Helper V

Count Customers depending on bookings per day

Hi, i need help with a tough calculation i have to do.

 

I have customers and these customers have bookings lasting several days or even month. So each booking has a start and an end. And i have two different types of bookings, lets say A and B.

 

I want to calculate for each day how many customers I have with only A bookings, with only B bookings and with A and B bookings.

 

Bookingdata could look like this

 

CustomerBooking TypeStartEnd
1A01.01.202001.01.2022
1A03.01.202203.01.2022
1B03.01202205.01.2022
2B01.01.202201.01.2022
2B01.01.202201.01.2022
2B03.01.202203.01.2022

 

Result should be

DayA-Type CustomersB-Type CustomersAB-Type Customers
01.01.2022110
02.01.2022000
03.01.2022011
04.01.2022010
05.01.2022010

 

I also have a customers table and a date table as dimensions.

 

I managed to measure customers of a and b type seperately without taking into account if they have both with for example for A:

Calculate(Distinctcount(Customer),Filter(all(Bookingdata), Start<= Day && End >= Day && Booking Type = A))

 

But that way I cannot count only those with both A and B and these are counted double if I count A and B seperately.

 

Hope someone can help out. Thanks!

2 REPLIES 2
H3nning
Helper V
Helper V

Hi @amitchandak , thank you but that I already manged even with connected table. My Problem is that every ID has multiple entries with two diofferent states. And I want to count per day: How many with state A, how many with state B and most importantly how many with A and B without counting them double!

amitchandak
Super User
Super User

@H3nning , Create a disconnected date table, means do not join with your table

Then create a measure and use along with date from date table in visual

 

Calculate(distinctcount(Bookingdata[Customer]), filter(Bookingdata, Bookingdata[Start] >= Max(Date[Date]) && Bookingdata[END] >= Max(Date[Date]) ))

 

Check the HR example file attached

 

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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