cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
k123
Frequent Visitor

How to merge a grouped table with another table?

Hi I am new to Power BI,

 

I am trying to merge my grouped table that I created by grouping on various columns of my original data and now I want to merge this table with another unrelated table. Once I created this grouped table I also created a relationship with my original data in the model.

 

Grouped table:

ID  Student_name Exam_desc                   Exam    Grades

1    Abc                  Class 12  advanced biology     Bio     A

2    Xyz                   Class 2 math           math         Math B

 

Other table that I want to merge with is as follows:

Exam_id   Exam_desc

123          Class 10 math

312          Class 2 math

.......................

 

Please let me know how to implement this. Thanks!

 

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @k123,


You can add a calculate column to grouped table with lookupvalue function to find out correspond records from other table.

Exam_id =
LOOKUPVALUE ( Table2[Exam_id], Table2[Exam_desc], Groupped[Exam_desc] )

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @k123,


You can add a calculate column to grouped table with lookupvalue function to find out correspond records from other table.

Exam_id =
LOOKUPVALUE ( Table2[Exam_id], Table2[Exam_desc], Groupped[Exam_desc] )

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors