Forum Discussion
penguinapplesauce
Sep 28, 2019Copper Contributor
Need help removing wrap text from 3 cells, not as easy as it sounds
A customer sent me an excel file that I need to save as a CSV so it can be loaded into a system. When I open the document as a CSV file cells B2, B3, and B4 are showing blank, however if you expand t...
- Sep 28, 2019
You may try something like this and see if that resolves the issue.
In a blank column, in Row2, place this formula...
=TRIM(SUBSTITUTE(B2,CHAR(10)," "))
and then copy it down to row4.
Then copy the three formula cells, select the cell B2 and paste it as Values only and delete the formula cells. That should replace all the line breaks in B2:B4 with space and trim them in the end to remove any leading or trailing spaces.
penguinapplesauce
Sep 28, 2019Copper Contributor
THANK YOU! Worked perfect!
Subodh_Tiwari_sktneer
Sep 29, 2019Silver Contributor
You're welcome! Glad it worked as desired.