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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Whibley92
Helper II
Helper II

Moving or merging data to be included in question response column

We have an evaluation form and with rows of responses, questions are the column headers.

 

We have graded some of the responses Low Medium or High so its easy to view/analyse in Power BI.

 

Some of the responses sit better in different columns. How can I move/merge them to appear in a new cell but as part of the original repondents comments.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Whibley92 ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:

vheqmsft_0-1710902270407.png

Create a calculated column

Output = CONCATENATEX(
        FILTER('Table', [Level] = EARLIER('Table'[Level])),
        'Table'[Question],
        ", "
    )

Final output

vheqmsft_1-1710902324909.png

 

Best regards,

Albert He

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

In the Query Editor, select all columns others than the Question columns.  Right click and select "Unpivot Other Columns".  Rename the attribute column to Questions.  Click on Close and Apply.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Whibley92 ,
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:

vheqmsft_0-1710902270407.png

Create a calculated column

Output = CONCATENATEX(
        FILTER('Table', [Level] = EARLIER('Table'[Level])),
        'Table'[Question],
        ", "
    )

Final output

vheqmsft_1-1710902324909.png

 

Best regards,

Albert He

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Thanks, this does work in some ways but my questions are along the top:

question 

Question1RatingQuestion2RatingQuestion3Rating
Answer1HighAnswer1LowAnswer1Medium
Answer2MediumAnswer2HighAnswer2Medium
Answer3LowAnswer3MediumAnswer3High
PhilipTreacy
Super User
Super User

Hi @Whibley92 

 

The description of what you want to do is lacking in detail and a visual explanation (images and text) would help.

 

Please supply some sampel data we can work with too.

 

regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors