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
Vijay_Kumar_P
New Member

Hello, I need help with Dax code to concatenate few columns.

Sample data:

Vijay_Kumar_P_0-1668169992679.png

 

For example, I want to concatenate C1,C2,C3,C4 columns and I don't want to include Null values in the Output Column. 

 

Thanks in advance.

1 ACCEPTED SOLUTION
ppm1
Solution Sage
Solution Sage

I would do that kind of thing in the query editor, but here is a DAX column expression you can use. A virtual table is created with { }, filtered to remove blanks, and then the results are concatenated with no delimiter. Replace T1 with your actual table name.

Concat =
VAR ValuesAsTable =
    FILTER ( { T1[C1], T1[C2], T1[C3], T1[C4] }, [Value] <> "" )
RETURN
    CONCATENATEX ( ValuesAsTable, [Value], "" )

ppm1_0-1668172062877.png

 

Pat

Microsoft Employee

View solution in original post

2 REPLIES 2
ppm1
Solution Sage
Solution Sage

I would do that kind of thing in the query editor, but here is a DAX column expression you can use. A virtual table is created with { }, filtered to remove blanks, and then the results are concatenated with no delimiter. Replace T1 with your actual table name.

Concat =
VAR ValuesAsTable =
    FILTER ( { T1[C1], T1[C2], T1[C3], T1[C4] }, [Value] <> "" )
RETURN
    CONCATENATEX ( ValuesAsTable, [Value], "" )

ppm1_0-1668172062877.png

 

Pat

Microsoft Employee
FreemanZ
Super User
Super User

You can add a new column with the code below:

 

Expected Output = Data[C1]&Data[C2]&Data[C3]&Data[C4]

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