Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I would like to combine some data from 2 differents tables in direct query mode.
The objective is to get sales from table 2 to table 1, for only 1 specific shop (see example below).
I tried Amend function but not working in direct query mode.
And merge doesn't seems my solution since in reality, my tables headers are different.
Do you have any other suggestion?
Thank you!
Example :
example
Solved! Go to Solution.
Hi @Anonymous,
Do you have the latest version of Power BI Desktop? You can append the queries in the Query Editor after changing the column names.
Another solution is using DAX. Maybe this one like below.
Table = UNION ( SELECTCOLUMNS ( st2, "Date", [Date], "Day", [Dayz], "Month", [Month], "Value", [Value], "Year", [Year] ), SELECTCOLUMNS ( table2, "Date", [date2], "Day", [Dayz], "Month", [Month], "Value", [Value], "Year", [year2] ) )
Best Regards,
Even Union in DAX create table in import mode. I need the resultant table to be in direct query mode only @v-jiascu-msft
Hi @Anonymous,
Do you have the latest version of Power BI Desktop? You can append the queries in the Query Editor after changing the column names.
Another solution is using DAX. Maybe this one like below.
Table = UNION ( SELECTCOLUMNS ( st2, "Date", [Date], "Day", [Dayz], "Month", [Month], "Value", [Value], "Year", [Year] ), SELECTCOLUMNS ( table2, "Date", [date2], "Day", [Dayz], "Month", [Month], "Value", [Value], "Year", [year2] ) )
Best Regards,
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
39 | |
31 | |
26 |