Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Merge or append 2 queries (in direct query mode)

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 :

 

 

exampleexample

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
Employee

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,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
supsinha_pbi
Frequent Visitor

Even Union in DAX create table in import mode. I need the resultant table to be in direct query mode only  @v-jiascu-msft

v-jiascu-msft
Employee
Employee

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,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

hello @v-jiascu-msft,

 

Thanks for your advice, I will use it accordingly (in DAX).

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.