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
GCGradwell
Helper I
Helper I

Concatenate data into new column using heirarchies

Hi,

 

I am trying to create a new column which concatenates data from two different columns. These columns are in different tables and are linked to each other by relationships within Power BI.

 

I want to concatenate Customer ID and Department. Customer ID is in the same table as product. Products are categorized by product class and each product class is a member of a department.

 

Thread 3 img 2.png

 

 

 

 

Many thanks,

 

Greg

1 ACCEPTED SOLUTION
chrisu
Responsive Resident
Responsive Resident

As stated above, you'd need a calculated column.  In my own data with a similar setup (pulling the "one" side to a "many" side of a relationship two tables away), I was able to do this using a single formula that looks like this:

 

IDDepartment = CONCATENATE(Invoices[Customer ID], RELATED('Product Class'[Department]))

 

 

View solution in original post

3 REPLIES 3
chrisu
Responsive Resident
Responsive Resident

As stated above, you'd need a calculated column.  In my own data with a similar setup (pulling the "one" side to a "many" side of a relationship two tables away), I was able to do this using a single formula that looks like this:

 

IDDepartment = CONCATENATE(Invoices[Customer ID], RELATED('Product Class'[Department]))

 

 

Fantastic! Excellent solution, I really appreciate the help.

 

Massive thanks!

 

Greg

ankitpatira
Community Champion
Community Champion

@GCGradwell i think you need to make use of dax calculated columns. so first make use of lookupvalue function to create a calculated column in product details table that contains department name. then use related() function of dax to create calculated column in Invoices table that contains department name. then simply use concatenate() function for customer id and department in invoices table.

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.