Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I'm trying to merge data from two tables either into the one of the tables or create a new merged table if I need to. I've looked and looked and don't know how to make this happen. It seems like a relatively easy concept but I'm very new to Power BI. Thanks for any help anyone can provide.
Table: Data | |
Lane | Period |
A | P01 |
A | P01 |
A | P02 |
B | P01 |
B | P02 |
C | P01 |
Table: Baseline | ||
Lane | P01 | P02 |
A | 5 | 7 |
B | 3 | 2 |
C | 1 | 4 |
Desired outcome | ||
Lane | Period | Baseline |
A | P01 | 5 |
A | P01 | 5 |
A | P02 | 7 |
B | P01 | 3 |
B | P02 | 2 |
C | P01 | 1 |
Solved! Go to Solution.
@kgshooter See the attached PBIX file. You unpivot your Baseline P01, P02 columns, rename Attribute column to Period and then you can merge that table into Data using both Lane and Period columns.
@kgshooter See the attached PBIX file. You unpivot your Baseline P01, P02 columns, rename Attribute column to Period and then you can merge that table into Data using both Lane and Period columns.