Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi
I need to help to make a count of patients that are in beds each day in hospitals. My data looks like this:
Hospital Patient_ID Admission_date Discharge_date
HospitalA 1 10.05.2021 13.05.2021
HospitalB 2 11.05.2021 16.05.2021
HospitalA 3 08.05.2021 15.05.2021
My expected output is like this:
date count_of_patients
07.05.2021 0
08.05.2021 1
09.05.2021 1
10.05.2021 2
11.05.2021 3
12.05.2021 3
13.05.2021 3
14.05.2021 2
15.05.2021 2
16.05.2021 1
and my final diagram is like this with possibility to have a slicer for hospital :
How can I make a measure in DAX that gives me what I want?
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Patient Count: =
CALCULATE (
COUNTROWS ( Data ),
FILTER (
Data,
Data[Admission_date] <= MAX ( 'Calendar'[Date] )
&& Data[Discharge_date] >= MIN ( 'Calendar'[Date] )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Hi,
Please check the below picture and the attached pbix file.
Patient Count: =
CALCULATE (
COUNTROWS ( Data ),
FILTER (
Data,
Data[Admission_date] <= MAX ( 'Calendar'[Date] )
&& Data[Discharge_date] >= MIN ( 'Calendar'[Date] )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
This solution worked out beautifully. Simple, but truly effective solution. Thanks a lot !!!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
10 | |
10 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |