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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Pravdba
New Member

Need help to filter as per numerator values in the percentage

Hi,  

1st table was the % for Present/total ,While clicking on Feb 2025 33% (1/3) in table1,  It was filtering all 3 rows present in Feb below table. But i need to show only one which is responsible for that 33%. 

 

Table 1:

Pravdba_0-1742478842193.png

 

Table 2:

Pravdba_1-1742479118988.png

 

Thanks & Regards,

Praveen Kumar

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @Pravdba  - You need to apply a filter in Table 2 so that only the row contributing to the percentage like 1 out of 3

 

create a measure to identify the responsible row.

ResponsibleRow =
VAR TotalCases = CALCULATE(COUNT('YourTable'[CaseID]), ALLEXCEPT('YourTable', 'YourTable'[Month Year]))
VAR SelectedMonthCases = COUNT('YourTable'[CaseID])
VAR Percentage = DIVIDE(SelectedMonthCases, TotalCases, 0)
RETURN
IF(Percentage = 1/TotalCases, 1, 0)

 

use this measure to table 2 with responsible row =1, it works. please check and confirm.

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

4 REPLIES 4
v-saisrao-msft
Community Support
Community Support

Hi @Pravdba,

 

We haven’t heard back from you regarding your issue. If it has been resolved, please mark the helpful response as the solution and give a ‘Kudos’ to assist others. If you still need support, let us know.

 

Thank you.

v-saisrao-msft
Community Support
Community Support

Hi @Pravdba,

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

v-saisrao-msft
Community Support
Community Support

Hi @Pravdba,
I wanted to check if you had the opportunity to review the information provided by @rajendraongole1 . Please feel free to contact us if you have any further questions. If the response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.

rajendraongole1
Super User
Super User

Hi @Pravdba  - You need to apply a filter in Table 2 so that only the row contributing to the percentage like 1 out of 3

 

create a measure to identify the responsible row.

ResponsibleRow =
VAR TotalCases = CALCULATE(COUNT('YourTable'[CaseID]), ALLEXCEPT('YourTable', 'YourTable'[Month Year]))
VAR SelectedMonthCases = COUNT('YourTable'[CaseID])
VAR Percentage = DIVIDE(SelectedMonthCases, TotalCases, 0)
RETURN
IF(Percentage = 1/TotalCases, 1, 0)

 

use this measure to table 2 with responsible row =1, it works. please check and confirm.

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.