Forum Discussion
Anonymous
4 years agoNot applicable
Splitting Rows by Backspace
Hello! I'm creating a query from PDF and run into a problem. query read separate rows as one, i need to separate them: By copy pasting values in excel and using =unichar() I found t...
- 4 years ago
Are you sure your character is a backspace? That won't produce a new line. This is how you can split a cell to new rows by a carriage return/line feed (character 13):
Table.ExpandListColumn(Table.TransformColumns(Source, {{"Column1", Splitter.SplitTextByDelimiter("#(cr)#(lf)", QuoteStyle.Csv), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Column1") - 4 years ago
Interesting - what about this?
= Table.ExpandListColumn(Table.TransformColumns(#"Changed Type2", {{"Details.1", Splitter.SplitTextByDelimiter("#(lf)", QuoteStyle.Csv), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Details.1")
jennratten
Super User
4 years agoAlso, when you right-click on the column header and choose Split Column > By Delimiter, are any of the fields populated? This is what tipped me off that it may just be a line feed without carriage return that is needed. Which is strange because I used your sample text and it showed both.
Anonymous
4 years agoNot applicable
no it doesnt auto populate filled, perhaps there are too many options..
Thank you for your help 🙂