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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
ErDrRon
Frequent Visitor

Creating a hospital census dashboard

All,

 

I'm not sure if this is the correct place to ask this question but I'm looking for help on creating a hospital census dashboard.  I want to use a matrix visualization to show which patients were present at a particular hospital on a given date.  

 

Sample data set

 

Patient A admitted on 1/1/2021 and discharged on 1/2/2021

Patient B admitted on 1/1/2021 and discharged on 1/3/2021

Patient C admitted on 1/2/2021 and discharged on 1/3/2021

Patient D admitted on 1/2/2021 and discharged on 1/5/2021

Patient E admitted on 1/3/2021 and discharged on 1/4/2021

 

The matrix visualization should then display

 

Date

1/1/2021

     Patient A

     Patient B

1/2/2021

     Patient A

     Patient B

     Patient C

     Patient D

1/3/2021

     Patient B

     Patient C

     Patient D

     Patient E

1/4/2021

     Patient D

     Patient E

1/5/2021

     Patient D

1/6/2021

     No Patients

 

I can't figure out how to include a patient visit if the date being evaluated falls between the admit and discharge dates for that visit.  Can anyone help me figure this out?

Thank you,

Ron

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @ErDrRon ,

 

1.When you import the data into Power BI, it looks like this in the Power Query Editor.

3.png

 

2.Right-click the field name and select Split by positions.

4.png

 

3.It will intelligently figure out where you want to split, we remove the 8 and click ok.

5.png6.png

7.png

 

3.Remove unnecessary columns and rename other columns. Click Close&Apply.

8.png

9.png

 

4.Create a calendar table. No relationships between tables.

 

Table 2 = CALENDAR(DATE(2021,1,1),DATE(2021,1,10))

 

10.png

 

5.Create the measure and put into the matrix.

 

Measure = 
IF(
        MAX('Table'[Admitted Date]) <= MAX ( 'Table 2'[Date] )
            && MAX('Table'[Discharged Date]) >= MAX ( 'Table 2'[Date] )
,"In Hospital"
)

 

7.png

 

 

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

4 REPLIES 4
v-stephen-msft
Community Support
Community Support

Hi @ErDrRon ,

 

1.When you import the data into Power BI, it looks like this in the Power Query Editor.

3.png

 

2.Right-click the field name and select Split by positions.

4.png

 

3.It will intelligently figure out where you want to split, we remove the 8 and click ok.

5.png6.png

7.png

 

3.Remove unnecessary columns and rename other columns. Click Close&Apply.

8.png

9.png

 

4.Create a calendar table. No relationships between tables.

 

Table 2 = CALENDAR(DATE(2021,1,1),DATE(2021,1,10))

 

10.png

 

5.Create the measure and put into the matrix.

 

Measure = 
IF(
        MAX('Table'[Admitted Date]) <= MAX ( 'Table 2'[Date] )
            && MAX('Table'[Discharged Date]) >= MAX ( 'Table 2'[Date] )
,"In Hospital"
)

 

7.png

 

 

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.

awesome Stephen, 

 

quick question.. is there any way of grouping monthly?

 

thanks

 

HotChilli
Super User
Super User

First, get the source data in tabular form(3 columns).

Then there are 2 ways to go about this:

1. generate/expand the table to hold a row for each date that a patient is in hospital.

Pull the date and patient columns on to a matrix (in Rows)

 

OR

2. Create a Dates table.  Don't create a relationship to the source table. 
Write a measure to Count the patients with Admitted Date <= Date and Discharged Date >= Date.

Drag Date from the date table on to a matrix (in Rows). Put Patient in Rows.

Put Measure in Values.

Hi HotChilli, 

 

trying to write a measure, but failed, I am a newbie.. 

 

Is there any way of getting the DAX if you don't mind?

 

also what if Patient A has another admission (ex, 01/03/21) and discharge (ex, 01/05/21)?

 

Thanks for your contribution! 

 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.