Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
There are 3 Tables, Dim, Tab1, and Tab 2 with the relationship defined below,
Dim Table:
Key
A
B
C
D
Tab1:
Key | Ref | Data |
A | ABCD | 10 |
A | ABCD | 10 |
B | IJKL | 20 |
Tab2:
Key | Data |
A | 10 |
C | 20 |
D | 40 |
The desired output is to get
Key | Ref | Data Tab1 | Data Tab2 |
A | ABCD | 20 | 10 |
B | IJKL | 20 | |
C | 20 | ||
D | 40 |
Tried using the measure
Solved! Go to Solution.
Hi @sid-poly
You can use the append feature in PowerQuery to implement your needs.
When you add the "ref" column to the table, the result can only be like this:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @sid-poly
You can use the append feature in PowerQuery to implement your needs.
When you add the "ref" column to the table, the result can only be like this:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.