Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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:
Table 2:
Thanks & Regards,
Praveen Kumar
Solved! Go to Solution.
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.
Proud to be a Super User! | |
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.
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.
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.
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.
Proud to be a Super User! | |
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 42 | |
| 30 | |
| 24 |