Using Find & Replace to restore line breaks
I copied some information into a spreadsheet. Some of the cells take up multiple lines.
Such as
Item 1
Item 2
Item 3
in one cell
However these look more like "Item 1 " on each line. I used Trim() to remove extra spaces.
"Item 1"
Now I have one column that is wrong and one that is corrected. I want to replace the wrong column with the corrected column. So I cut the corrected column and paste it as Unformatted Text. This makes the function into text, but it also removes the line breaks.
Such asItem 1Item 2Item 3in one cell
I undo then use Find & Replace to change all line breaks into @ symbol. Cut and paste as Unformatted Text again to make the function text.
Such as@Item 1@Item 2@Item 3@in one cell
Now I need to change the @ symbol back into a line break but nothing I have looked up is working as it's described.