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
Anonymous
Not applicable

Concatenate of Text

I concatenated 3 columns of text headers into a 4th column and it works beautifully except there is so much text I have to resize the columns by hand in the visual. Is there a way to add a return between sections of the text so it will create a narrower column? Right now there is just a space hypen space ( - ) between hearder names.

 

Here is what I used to create the concatenate.

 

Contractor = 'Sep-Jun 2018 Burn Down'[Contractor Name] & " - PO#" & 'Sep-Jun 2018 Burn Down'[PO] & " - PO Line " & 'Sep-Jun 2018 Burn Down'[PO Line] & " - End Date " & 'Sep-Jun 2018 Burn Down'[End Date]

2 ACCEPTED SOLUTIONS
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Please try this:

Contractor =
'Sep-Jun 2018 Burn Down'[Contractor Name] & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[PO]
    & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[PO Line]
    & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[End Date]

 

After adding this column to table or matrix visual, remember to turn on "word wrap" option.

1.PNG

 

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Hi @Anonymous,

 

That case, please try:

Contractor =
'Sep-Jun 2018 Burn Down'[Contractor Name] & UNICHAR ( 10 )
    & "- PO#"
    & 'Sep-Jun 2018 Burn Down'[PO]
    & "- PO Line"
    & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[PO Line]
    & UNICHAR ( 10 )
    & "- End Date"
    & 'Sep-Jun 2018 Burn Down'[End Date]

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Please try this:

Contractor =
'Sep-Jun 2018 Burn Down'[Contractor Name] & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[PO]
    & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[PO Line]
    & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[End Date]

 

After adding this column to table or matrix visual, remember to turn on "word wrap" option.

1.PNG

 

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thank you Yuliana,

 

I had " - PO#" and " - PO Line" and " - End Date" in the string so that it would be in the header identifying the copy:

 

John Smith - PO#1234 - PO Line 1 - End Date 08/31/2018

 

I also had word wrap on so not sure why it doesn't automatically wrap. Thanks for the info!

 

 

Hi @Anonymous,

 

That case, please try:

Contractor =
'Sep-Jun 2018 Burn Down'[Contractor Name] & UNICHAR ( 10 )
    & "- PO#"
    & 'Sep-Jun 2018 Burn Down'[PO]
    & "- PO Line"
    & UNICHAR ( 10 )
    & 'Sep-Jun 2018 Burn Down'[PO Line]
    & UNICHAR ( 10 )
    & "- End Date"
    & 'Sep-Jun 2018 Burn Down'[End Date]

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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