March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I have 2 tables.
Table A: Current Month data with selected countries net sales.
Table B: Previous Months Sales and it have all countries net sales information.
I need to bring only table A countries related data from Table B.
The final view of Table A need to acheive like above.
Thanks.
Manohar
Solved! Go to Solution.
Hi @Manohar_MS
You can create a new calculated table
Table =
VAR a =
SUMMARIZE (
FILTER ( 'Table B', [Country] IN VALUES ( 'Table A'[Country] ) ),
[ID],
[Country],
[NS],
[Date]
)
RETURN
UNION ( 'Table A', a )
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
No, Append will bring all countries from Table B but I need information from Table B only for Table A countries.
@Manohar_MS , I think merge with inner join option should do
Merge Tables (Power Query) : https://youtu.be/zNrmbagO0Oo
I am getting two separate column like below but I want NS & Date columns need to append with table A columns.
@Manohar_MS , Create the above as separate table with columns of B(Innerjoined with A) remove extra columns and then append again with A
That can help with help from menu , else we need play with list and table functions
Hi @Manohar_MS
You can create a new calculated table
Table =
VAR a =
SUMMARIZE (
FILTER ( 'Table B', [Country] IN VALUES ( 'Table A'[Country] ) ),
[ID],
[Country],
[NS],
[Date]
)
RETURN
UNION ( 'Table A', a )
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @Manohar_MS ,
so you go to transformation data (aka Power Query) then you click on append queries and pick these two tables.
check this for more instructions https://learn.microsoft.com/en-us/power-query/append-queries
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Follow me on Linkedin
Vote For my Idea💡
Proud to be a Super User! | |
I need matching countries information only from Table B & columns need to append according to Tbl A
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |