Forum Discussion
Luvirini
Mar 07, 2023Copper Contributor
How to split text to columns from newline?
I have cells that contain a newline in middle, as in the cell contents is: “Text1 Text2” I want to split it to: “Text1” and “Text2” Text to columns tool does not seem to have an option ...
- Mar 07, 2023I read your question again.
If you want to use the "Text to columns tool" you can insert a linebreak with Ctrl+J (in "other delimiter" or whatever it's called in your version).
MindreVetande
Mar 07, 2023Iron Contributor
CHAR(10)
=TEXTSPLIT(A1,CHAR(10))
Luvirini
Mar 07, 2023Copper Contributor
Thanks, that works.