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
Anonymous
Not applicable

Creating connection between 3 survey score tables from different teams, but the same questions/date?

I'm very new to Power BI and I'm analyzing survey data.

There are 3 groups: Group A, Group B, and Group C. 

There are 15 different questions.

These questions were asked to the same group in Jan, Feb, and March.

 

I have a Group A table, Group B table, and Group C table. 

genessabagain_0-1649165632011.png

I think I'm having trouble modelling the data correctly (probably overcomplicating it). 

I try to plot a line graph with small multiples of the "question", "month" as the axis, and "score" as the values, it just doesn't turn out right and I also want to label them by the "groups" and cannot do so.

Any assistance on where my mistakes are? 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Either add a group name column in three table in power query and Append

Append : https://radacad.com/append-vs-merge-in-power-bi-and-power-query

 

Or create common dimensions like month and questions

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous,

I'd like to suggest you create a new calculated table to union these table records with a custom field to remark the source table.

New table =
UNION (
    ADDCOLUMNS ( GroupA, "Source", "GroupA" ),
    ADDCOLUMNS ( GroupB, "Source", "GroupB" ),
    ADDCOLUMNS ( GroupC, "Source", "GroupC" )
)

Regards,

Xiaoxin Sheng

amitchandak
Super User
Super User

@Anonymous , Either add a group name column in three table in power query and Append

Append : https://radacad.com/append-vs-merge-in-power-bi-and-power-query

 

Or create common dimensions like month and questions

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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