Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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] )
)
)
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] )
)
)
This solution worked out beautifully. Simple, but truly effective solution. Thanks a lot !!!
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |