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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello I am trying to assess some survey data and struggling to figure out how to find cross sections between varying groups.
I have categories for each as defined by the questions and aggregates for each of those. I then broke them into scored levels IE expert, advanced... using this measure: Calculate(countrows(values('Table'[Response ID])),FIlter(All('Table'),'Table[score] = "Advanced".
I did this for the other categories as well. What I am trying to find out is how can I make a measure or column that will give me the cross section between those that rated Advance in one category score with a score of say neutral from another category.
The end result would look something like:
Advanced (90 - as counted per ID) and Neutral (60 - counted per ID for that category) and there are X number of IDs that apply to both conditions.
Appreciate any help provided.
Solved! Go to Solution.
Hi, @MSW
You can try the following methods.
Sample data:
Measure =
CALCULATE (
COUNT ( 'Table'[Response ID] ),
ALLEXCEPT ( 'Table', 'Table'[score] )
)
Is this the result you expect? If not, provide sample data and the output you expect.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @MSW
You can try the following methods.
Sample data:
Measure =
CALCULATE (
COUNT ( 'Table'[Response ID] ),
ALLEXCEPT ( 'Table', 'Table'[score] )
)
Is this the result you expect? If not, provide sample data and the output you expect.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @MSW
try to write a measure like this:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |