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
mtrevisiol
Helper V
Helper V

Combine rows according to a column

Hi everyone,

I've got a table which contains the list of customers of a company:

 

mtrevisiol_1-1662034496446.png

 

Each customer has a code and a name, and some of them change their name over time.

My intent is to create a new table that contains only the most recent names of each customer, so the ideal result would be:

 

mtrevisiol_2-1662034536517.png

 

because client 001 has become 003 and then 006, and client 002 has became 005.

 

How can I do it? This is the pbix file: https://www.dropbox.com/s/z1s9hgw4p5qtrsl/Customers.pbix?dl=0

 

Thanks for the help

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Create a new table like

Filtered Customers = CALCULATETABLE(
	Customers,
	EXCEPT( VALUES( Customers[Code]), VALUES( Customers[OldCode]))
)

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Create a new table like

Filtered Customers = CALCULATETABLE(
	Customers,
	EXCEPT( VALUES( Customers[Code]), VALUES( Customers[OldCode]))
)

Many thanks, it perfectly works!

I found that an alternative way consists of a "Right anti" merge between Customers.OldCode on power query

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.