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

DAX to Concatenate Correspond Rows?

Hello,

 

I am trying to concatenate 2 correspond rows  in the same column.   Here is my example:

 

ranis1227_1-1661780528894.png

I need Malignant neoplasm associated with transplanted organ on the same row to C802.  

 

So the final result would look like this:

ranis1227_2-1661780765463.png

 

I tried a lag but the null rows are throwing me off.  Any help will be greatly appreciated.  

 

 

 

2 ACCEPTED SOLUTIONS
Syk
Super User
Super User

Right click your first column and fill down

Syk_0-1661783045779.png


This will give your descriptions the same ID.

Then right click the same row and select group by and set it to MAX of the description

Syk_1-1661783129621.png

and you should get something like this

Syk_3-1661783238733.png

Replace the highlighted text 'List.Max' with 'Text.Combine' (also throw a space in there to seperate the strings) and you get....

Syk_5-1661783356831.png

changes are highlighted

 

View solution in original post

Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but if you can go into Power Query Editor, try using FILLDOWN function in order to make null value same as the above value.

https://docs.microsoft.com/en-us/power-query/fill-values-column

 

And then try creating a new table by writing a DAX formula something like below.

 

Please check the below picture and the attached pbix file.

 

 

Picture1.png

 

 

New Table =
ADDCOLUMNS (
    VALUES ( Data[Column1] ),
    "@NewColumn", CALCULATE ( CONCATENATEX ( Data, Data[Column2], " " ) )
)

 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but if you can go into Power Query Editor, try using FILLDOWN function in order to make null value same as the above value.

https://docs.microsoft.com/en-us/power-query/fill-values-column

 

And then try creating a new table by writing a DAX formula something like below.

 

Please check the below picture and the attached pbix file.

 

 

Picture1.png

 

 

New Table =
ADDCOLUMNS (
    VALUES ( Data[Column1] ),
    "@NewColumn", CALCULATE ( CONCATENATEX ( Data, Data[Column2], " " ) )
)

 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thank you @JihwanKim . This is what I need.  Also @Syk  your solution works too.  Thank you both again.  

Syk
Super User
Super User

Right click your first column and fill down

Syk_0-1661783045779.png


This will give your descriptions the same ID.

Then right click the same row and select group by and set it to MAX of the description

Syk_1-1661783129621.png

and you should get something like this

Syk_3-1661783238733.png

Replace the highlighted text 'List.Max' with 'Text.Combine' (also throw a space in there to seperate the strings) and you get....

Syk_5-1661783356831.png

changes are highlighted

 

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.

Top Solution Authors