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
datavis
Resolver I
Resolver I

Combine text from multiple columns into one

Hi Community,

I need to combine text from three different columns as shown below. The first table shows three columns that I need to combine. I need to add text and punctuate  so each row in the final column looks like this: Name - PO#1234 - End Date 10/22/2017 Also as shown in the small table below the first one in the example below.

Concantenate.PNG

Appreciate your help!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hey @datavis

 

A couple of options for you:

 

Column = Table[Name] & " - PO#" & Table[PO #] & " - End Date " & Table[End Date]

Or...

 

Column = 
COMBINEVALUES(
" - PO#", COMBINEVALUES(" - End Date ", Table[Name], Table[PO #]),
Table[End Date]
)

 

Hope this helps,

Parker

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hey @datavis

 

A couple of options for you:

 

Column = Table[Name] & " - PO#" & Table[PO #] & " - End Date " & Table[End Date]

Or...

 

Column = 
COMBINEVALUES(
" - PO#", COMBINEVALUES(" - End Date ", Table[Name], Table[PO #]),
Table[End Date]
)

 

Hope this helps,

Parker

Works like a charm! Thank you Parker!

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.