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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors