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
StoryofData
Helper III
Helper III

Line Break if text contains ;;;;;

Hi, 

 

My data is fed from SQL Server, I have a column with free text, no formatting. I do have ";;;;;" where the line break used to exist in the system before data was ingested by SQL Server. What I need to do is to create line breaks in that text so it is easier to read. Here is an example, black text is unformatted, text in blue is how I'd like it to appear in a table for example. Is this a solvable issue?

StoryofData_0-1679002498503.png

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

try like this

Text.Combine(
Text.Split([Column1],";;;;"),"#(lf)")

Screen Capture #625.png

View solution in original post

4 REPLIES 4
StoryofData
Helper III
Helper III

Thank you sooooooo much! I thought this was impossible 🙂

Ahmedx
Super User
Super User

try like this

Text.Combine(
Text.Split([Column1],";;;;"),"#(lf)")

Screen Capture #625.png

Is there a way to insert a bigger break?

 

Right now it's doing this:

"Power BI is a collection of software services, apps, and connectors that work together to turn your unrelated sources of data into coherent, visually immersive, and interactive insights. BREAK

Your data might be an Excel spreadsheet, or a collection of cloud-based and on-premises hybrid data warehouses. Power BI lets you easily connect to your data sources, visualize and discover what's important, and share that with anyone or everyone you want."

and i'd like it to be this:

"Power BI is a collection of software services, apps, and connectors that work together to turn your unrelated sources of data into coherent, visually immersive, and interactive insights.

BREAK

Your data might be an Excel spreadsheet, or a collection of cloud-based and on-premises hybrid data warehouses. Power BI lets you easily connect to your data sources, visualize and discover what's important, and share that with anyone or everyone you want."

Text.Combine(
Text.Split([Столбец1],";;;;"),"#(lf)"&Character.FromNumber(13))

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