Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have the following sample data:
User ID | Response Type | Score |
1 | a | 100 |
1 | a | 90 |
3 | b | 100 |
4 | a | 80 |
4 | b | 100 |
6 | b | 70 |
I want to filter the reults and get an average score for User IDs who have a response of type for BOTH A and B.
In this case, it would return just two responses, from user 4 and the overall average score for the table would be 90. The idea is to see if users who have responses from both types on average have different scores than the overall group.
Any thoughts?
Solved! Go to Solution.
First I applied a visual-level filter using this measure:
This makes the table only show the result for User Id #4.
Then I calculated the average of their scores :
See attached .pbix file with the solution.
///Mediocre Power BI advice, but it's free///
First I applied a visual-level filter using this measure:
This makes the table only show the result for User Id #4.
Then I calculated the average of their scores :
See attached .pbix file with the solution.
///Mediocre Power BI advice, but it's free///