Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
freelensia
Advocate II
Advocate II

Insert a line break in the middle of Power Query text (not a text in Excel)

Hi,

 

I am building some "fake" queries to store instructions for my Power Query user. One might looke like this:

 

let 
MyText = "Instructions
Welcome to the ...
Step 1:  ...
Step 2: ...
..."
in MyText

 

 

 But Power Query does not let me have these line breaks. I have also tried.

 

let 
MyText = "Instructions" & #(lf) &
Welcome to the ..."
in MyText

 

 

and:

 

let 
MyText = "Instructions" & unichar(10) &
Welcome to the ..."
in MyText

 

 

 Any ideas guys?

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @freelensia 

You could paste your test into one cell of an excel file, then load that table from excel with Power BI.

Capture1.JPGCapture2.JPG

 

Best Regards
Maggie
Community Support Team _ Maggie Li
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

6 REPLIES 6
marcl2
Frequent Visitor

really late answer, but might be useful for others
assuming you want to replace the semicolumns by a return to the line this line of M code might help


= Table.ReplaceValue(#"Changed Type",each [Column1],each Text.Replace([Column1],";", "#(lf)"),Replacer.ReplaceText,{"Column1"})

v-juanli-msft
Community Support
Community Support

Hi @freelensia 

You could paste your test into one cell of an excel file, then load that table from excel with Power BI.

Capture1.JPGCapture2.JPG

 

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

 

freelensia
Advocate II
Advocate II

Never mind. I solved it with.

 

&  Character.FromNumber(10)&

 

 

Pretty annoying to have to insert this at the end of every line. Plus if I have the double quotation mark in the text I must replace it with & Character.FromNumber(34) &.

 

Any other ideas?  

Anonymous
Not applicable

The "& Character.FromNumber(10) &" works. The "#(lf)" does not seem to work in actual query strings (it simply gives an error looking for a token). The "Use Excel instead of Power Query" answer did not address the original issue at all. Thanks, freelensia, for following through and finding a solution that works.

Maybe too late to answer, but for anyone in future arriving here from Google:

These special strings are really handy:

  • Line feed: "#(lf)"
  • Carriage return: "#(cr)"
  • Tab: "#(tab)"

Also keep in mind that depending on the target OS that the text will be used in, dealing with line breaks can be slightly different. For example in Windows, it's usually CR + LF that you need to be safe in all apps (notepad anyone?), otherwise you may get away with a LF character.

Thanks, for me, this is The Solution. 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.