Forum Discussion
forthaus
Feb 12, 2023Copper Contributor
How to devide text data ( adress ) devided by commar into text with text wrap
Hey community, is there a smart way to convert address data devided by comma into a new cell with text wrap? I have following text: Examplestreet 1, 12345 City and I would like to get it into...
- Feb 12, 2023
=SUBSTITUTE( C6,", ", CHAR(10))
With this formula the space is removed. The difference is ", " instead of ",". In the new formula there is a space after the comma.
dscheikey
Feb 12, 2023Bronze Contributor
Then try it: (in A1 is your address)
=SUBSTITUTE(A1,", ",CHAR(10))
SIGN() is the wrong function. It gives the sign of a number.
- forthausFeb 12, 2023Copper ContributorThanks a lot, now it works, my bad i changed the language in english and used the wrong one 😄 Thanks for your quick help