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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
juarta
Frequent Visitor

Eliminar duplicados power query, seleccionar el dato unico

Deseo eliminar duplicados pero seleccionar el dato que quede único., si ordeno el id en power query, dejandolo al inicio no funciona, siempre toma el orden que tiene en la base original 

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @juarta ,

 

Try to use Table.Buffer to force PowerQuery to remember your actually sort.

...
#"Sorted Rows" = Table.Sort(...,...),
#"Buffer Sorted Table" = Table.Buffer(#"Sorted Rows"), 
#"Removed Duplicates" = Table.Distinct(#"Buffer Sorted Table", ...),
...

 

 

Best Regards,

Icey

 

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
Icey
Community Support
Community Support

Hi @juarta ,

 

Try to use Table.Buffer to force PowerQuery to remember your actually sort.

...
#"Sorted Rows" = Table.Sort(...,...),
#"Buffer Sorted Table" = Table.Buffer(#"Sorted Rows"), 
#"Removed Duplicates" = Table.Distinct(#"Buffer Sorted Table", ...),
...

 

 

Best Regards,

Icey

 

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

juarta
Frequent Visitor

Muchas gracias me funciono como queria

mahoneypat
Employee
Employee

Add an index column after your sort step and before the remove duplicates step to keep the ones you want.

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
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.

Top Solution Authors
Top Kudoed Authors