Forum Discussion
Daniel237
May 18, 2023Copper Contributor
Unwrap a wrapped text
Hi Guys, I have this file that i converted from PDF to excel...and it's a bit messy. How do i change this wrapped text into individual lines. As you can see below, every lines here are in one...
- May 18, 2023
The simplest solution may be to put in a new column and use something like this to split on the line breaks:
=TEXTSPLIT(B2,,CHAR(10))
Patrick2788
May 18, 2023Silver Contributor
The simplest solution may be to put in a new column and use something like this to split on the line breaks:
=TEXTSPLIT(B2,,CHAR(10))
- Daniel237May 23, 2023Copper Contributor
Patrick2788Thanks Patrick. it does the job. Just that it stores numbers as text so i had to use =value to sort it out... But all good.
Thanks again
- SergeiBaklanMay 23, 2023MVP
As an option, perhaps Power Query with From PDF connector works.
- Patrick2788May 23, 2023Silver ContributorYou are welcome!