Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Good Afternoon,
I Have Table 1 which is a summarised version of a larger fact table.. Has Year, Fin Month, Various Columns and a Value.
I Have a 2nd Table, which too is a summarised table of a larger fact table. Also Has Year, Fin Month and 1 Value.
I would like to Add Table2's Value Column, to Table 1.
First Table | |||
Fin Year | Fin Month | Column 1 | Value |
2022 | 1 | Uk | 200 |
2022 | 1 | Us | 300 |
2022 | 1 | Eur | 100 |
2022 | 2 | UK | 400 |
2022 | 3 | UK | 250 |
Second Table | ||
Fin Year | Fin Month | Value |
2022 | 1 | 30000 |
2022 | 2 | 40000 |
2022 | 3 | 50000 |
End result required
New Table | ||||
Fin Year | Fin Month | Column 1 | Value | 2nd table Value |
2022 | 1 | Uk | 200 | 30000 |
2022 | 1 | Us | 300 | 30000 |
2022 | 1 | Eur | 100 | 30000 |
2022 | 2 | UK | 400 | 40000 |
2022 | 3 | UK | 250 | 50000 |
I will be Combining Year and Fin Month to get a singular ID Field to get a relationship... Just Cannot seem to get the required Output...
Any help will be most appreciated.
Regards Mike.
Solved! Go to Solution.
@Anonymous , You can create a new in a column in power query or dax
[Year]*100 +[Month]
In both table.
Post that you can merge in power query
https://radacad.com/append-vs-merge-in-power-bi-and-power-query
InDAX, you can use innerjoin , Crossjoin/filter to create a new table
Or simply join the table and use addcolumns to create a new table
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/
Or copy column
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
@Anonymous , You can create a new in a column in power query or dax
[Year]*100 +[Month]
In both table.
Post that you can merge in power query
https://radacad.com/append-vs-merge-in-power-bi-and-power-query
InDAX, you can use innerjoin , Crossjoin/filter to create a new table
Or simply join the table and use addcolumns to create a new table
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/
Or copy column
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
6 | |
4 | |
3 | |
3 |
User | Count |
---|---|
13 | |
11 | |
8 | |
8 | |
8 |