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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AJV
Helper I
Helper I

Survey Analysis - Top/Bottom Scoring Questions

Hello:

 

I am looking for some suggestions as to how to produce a table that shows the analysis of survey data.

 

Of a survey containing 50-60 survey questions, we need to draft a table that shows what the highest 3 scoring questions and lowest 3 scoring questions are for each population (ie. business unit, demographic, etc.). I'd envision this table to list each population in a row with columns then displaying the top and bottom three questions.

 

I'm wondering if anyone has any pointers or suggestions, or knows of an online resource that they could point me toward.

 

Thank you!

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Share some data and show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

@AJV , for this your question and score both need to be in rows.  The based on average Score and Rank you can find top and bottom 3

Score = average(Table[question Score])

 

High Rank = RANKX(all(Table[Question]),[Score])

Low Rank = RANKX(all(Table[Question]),[Score],,asc, dense)

 

Top 3 = CALCULATE([Sales],TOPN(3,all(Table[Question]),[Score ],DESC),VALUES(Table[Question]))

bottom 3 = CALCULATE([Sales],TOPN(3,all(Table[Question]),[Score ],ASC),VALUES(Table[Question]))

Greg_Deckler
Super User
Super User

@AJV So in general you are going to want everything to be unpivoted. So like:

 

ResponseID,QuestionID,QuestionText,Score

1,Question1,This is a question,10

1,Question2,This is another question,3

2,Question1,This is a question,10

2,Question2,This is another question,3

3,Question1,This is a question,10

3,Question2,This is another question,3

 

You do NOT want:

 

ResponseID,Question1Text,Question1Score,QuestionIDText,Question2Score,Question3Text,Question3Score...

 

Not sure how much more specific I can be given the information. @ me in replies.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.