Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |