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
AbdulAzad
Frequent Visitor

Union not removing the duplicate data

Hi,

 

Looks like UNION DAX has a bug, its not removing the duplicate data, I tried to do union of two table by using the option to create a new table based on UNION DAX.

 

Union generally deletes duplicate data between two tables and union all keeps even the duplicate data. Here in Power BI desktop, I don't see the UNION is removing the duplicate data.

 

Can you guys please confirm, if it is a bug? If it is a bug then when can we expect the resolution?

 

Thanks & Regards,

Abdul

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

Hi @AbdulAzad ,


Accoridng to the official document , UNION() returns a table that contains all the rows from each of the two table expressions.

v-yalanwu-msft_0-1619404461156.png

IF you want to union and remove the duplicate data, you can use “distinct() ”to achieve it. The following is an example::
26.jpg
The final output is shown below:  UNION() vs DISTINCT(UNION())
newtable1 = UNION('Table','Table (2)')      vs      newtable2 = DISTINCT(UNION('Table','Table (2)'))

v-yalanwu-msft_1-1619404533473.png

Best Regards,
Community Support Team_ Yalan Wu
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

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi @AbdulAzad ,


Accoridng to the official document , UNION() returns a table that contains all the rows from each of the two table expressions.

v-yalanwu-msft_0-1619404461156.png

IF you want to union and remove the duplicate data, you can use “distinct() ”to achieve it. The following is an example::
26.jpg
The final output is shown below:  UNION() vs DISTINCT(UNION())
newtable1 = UNION('Table','Table (2)')      vs      newtable2 = DISTINCT(UNION('Table','Table (2)'))

v-yalanwu-msft_1-1619404533473.png

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

HotChilli
Super User
Super User

It's not a bug.

"A table that contains all the rows from each of the two table expressions"

"Duplicate rows are retained"

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.