Reply
MuthalibAbdul
Helper I
Helper I
Partially syndicated - Outbound

Calculate percentage between two tables

So I need to calculate the return to hospital percentage when we see a patient and when we do not see a patient to compare (and prove that if we have seen the patient, our RTH is low which means good)

 

I have table1 where all the data is compiled. However I am interested only in 5 specific facilities  (my data has 200+ facilities) and I am interested in only 2024 september (my data has 3 years worth data)

Table2 has the patients that returned to hospital and if they were seen by us or no. 

 

Table1

MuthalibAbdul_2-1737151716868.png

 

Table2

MuthalibAbdul_1-1737151686115.png

 

Measures created

I have all measures created in one table

MuthalibAbdul_3-1737151764603.png

MuthalibAbdul_5-1737151785574.png

Here I am calculating if they were consulted by us or no. I want to use these numbers as the numerator where calculating return to hospital 

 

Next I need to figure out measures for the other table where it would take only september and only specific location within the location column. Both these tables have a many to many relationship. 

 

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

Syndicated - Outbound

Hi @MuthalibAbdul ,

 

Thanks for the reply from Ashish_Mathur .

 

You are trying to calculate the percentage of patients Consulted as Yes and No in Table2 for comparison based on the location and date filtered in Table1 right?

 

This is the data I created to test it:

 

Table1:

vhuijieymsft_0-1737363402338.png

 

Table2:

vhuijieymsft_1-1737363402341.png

 

Make sure there is no relationship between these two tables.

 

Please create a measure to count the number of ID Consulted = “Yes” when I select five specific locations and specific dates in Table1.

 

YesCount =
VAR _Slicer =
    VALUES ( 'Table1'[Location] )
VAR _outcome =
    COUNTROWS (
        FILTER (
            'Table2',
            'Table2'[Location]
                IN _Slicer
                    && 'Table2'[Discharge Date] >= MIN ( 'Table1'[Date of Service] )
                    && 'Table2'[Discharge Date] <= MAX ( 'Table1'[Date of Service] )
                    && 'Table2'[ID Consulted] = "Yes"
        )
    )
RETURN
    _outcome

 

 

Please create two measures to calculate the percentage of the total when the ID consulted is listed as Yes and No, respectively.

 

RTH_Percentage_Consulted = DIVIDE([YesCount],COUNTROWS('Table1'))
RTH_Percentage_NotConsulted = DIVIDE(COUNTROWS('Table1') - [YesCount],COUNTROWS('Table1'))

 

 

Use a column chart to compare the two percentages.

vhuijieymsft_4-1737363558883.png

 

In my sample, you can see that the calculation is correct.

vhuijieymsft_3-1737363425844.png

 

If there is an error in your data, I would like you to provide a Power BI Desktop file (with sensitive information removed) that fully covers your issue or question in a usable format (not a screenshot). You can upload the PBIX file to a cloud storage service such as OneDrive, Google Drive (set to public access), SharePoint, or a Github repository and then share the URL of the file.

 

The pbix file is attached.

 

If you have any other questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

View solution in original post

2 REPLIES 2
v-huijiey-msft
Community Support
Community Support

Syndicated - Outbound

Hi @MuthalibAbdul ,

 

Thanks for the reply from Ashish_Mathur .

 

You are trying to calculate the percentage of patients Consulted as Yes and No in Table2 for comparison based on the location and date filtered in Table1 right?

 

This is the data I created to test it:

 

Table1:

vhuijieymsft_0-1737363402338.png

 

Table2:

vhuijieymsft_1-1737363402341.png

 

Make sure there is no relationship between these two tables.

 

Please create a measure to count the number of ID Consulted = “Yes” when I select five specific locations and specific dates in Table1.

 

YesCount =
VAR _Slicer =
    VALUES ( 'Table1'[Location] )
VAR _outcome =
    COUNTROWS (
        FILTER (
            'Table2',
            'Table2'[Location]
                IN _Slicer
                    && 'Table2'[Discharge Date] >= MIN ( 'Table1'[Date of Service] )
                    && 'Table2'[Discharge Date] <= MAX ( 'Table1'[Date of Service] )
                    && 'Table2'[ID Consulted] = "Yes"
        )
    )
RETURN
    _outcome

 

 

Please create two measures to calculate the percentage of the total when the ID consulted is listed as Yes and No, respectively.

 

RTH_Percentage_Consulted = DIVIDE([YesCount],COUNTROWS('Table1'))
RTH_Percentage_NotConsulted = DIVIDE(COUNTROWS('Table1') - [YesCount],COUNTROWS('Table1'))

 

 

Use a column chart to compare the two percentages.

vhuijieymsft_4-1737363558883.png

 

In my sample, you can see that the calculation is correct.

vhuijieymsft_3-1737363425844.png

 

If there is an error in your data, I would like you to provide a Power BI Desktop file (with sensitive information removed) that fully covers your issue or question in a usable format (not a screenshot). You can upload the PBIX file to a cloud storage service such as OneDrive, Google Drive (set to public access), SharePoint, or a Github repository and then share the URL of the file.

 

The pbix file is attached.

 

If you have any other questions please feel free to contact me.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

Ashish_Mathur
Super User
Super User

Syndicated - Outbound

Hi,

Share some data to work with and show the expected result.  Share data in a format that can be pasted in an MS Excel file or share the download link of the PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)