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
serjio
New Member

Field sorting in loading script

I have load 4 tables from google analytics with idetntial fields.

i need to union this tables and work with union data, but field's sorting in one table is differ from other: http://joxi.ru/vAWDOn6S1kNabr

 

Why and how fix this trouble?

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @serjio,

 

You can try to use below methods to merge tables.

 

1. Power query:Table.SelectColumns ,Table.Combine

 

Sample:

MergeTable= 
Table.Combine(
Table.SelectColumns(Table1,{"Column1","Column2","Column3"}),
Table.SelectColumns(Table2,{"Column1","Column2","Column3"}),
Table.SelectColumns(Table3,{"Column1","Column2","Column3"}),
Table.SelectColumns(Table4,{"Column1","Column2","Column3"}))

 

 

2. Dax formula. Selectcolumns,  union functions.

 

Sample formula:

 

Table 2 = UNION(
	SELECTCOLUMNS('Table',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3]),
	SELECTCOLUMNS('Table2',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3]),
	SELECTCOLUMNS('Table3',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3]),
	SELECTCOLUMNS('Table3',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3])
	)

 

 

Reference links:

 

Dax:

SELECTCOLUMNS Function (DAX)

UNION Function (DAX)

 

Power query:

Table.SelectColumns

Table.Combine

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
Baskar
Resident Rockstar
Resident Rockstar

Cool,

 

We have to in Power Query. but we can do in DAX also. but in DAX it will createing Performance Issue.

 

So best way is go with Power Query.

 

SO we have option to Append your four table and create new table. follow the below steps1.JPG

 

 

 

 

 

Let me know if any help

v-shex-msft
Community Support
Community Support

Hi @serjio,

 

You can try to use below methods to merge tables.

 

1. Power query:Table.SelectColumns ,Table.Combine

 

Sample:

MergeTable= 
Table.Combine(
Table.SelectColumns(Table1,{"Column1","Column2","Column3"}),
Table.SelectColumns(Table2,{"Column1","Column2","Column3"}),
Table.SelectColumns(Table3,{"Column1","Column2","Column3"}),
Table.SelectColumns(Table4,{"Column1","Column2","Column3"}))

 

 

2. Dax formula. Selectcolumns,  union functions.

 

Sample formula:

 

Table 2 = UNION(
	SELECTCOLUMNS('Table',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3]),
	SELECTCOLUMNS('Table2',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3]),
	SELECTCOLUMNS('Table3',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3]),
	SELECTCOLUMNS('Table3',"Column1",[Column1],"Column2",[Column2],"Column3",[Column3])
	)

 

 

Reference links:

 

Dax:

SELECTCOLUMNS Function (DAX)

UNION Function (DAX)

 

Power query:

Table.SelectColumns

Table.Combine

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

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.