How to force text wrap or enter a linefeed?

Post Reply
xcel_refugee
Posts: 2
Joined: Tue Apr 13, 2021 10:30 pm

How to force text wrap or enter a linefeed?

Post by xcel_refugee »

The equivalent Excel command is alt-Enter. It's a very important capability yet I can't find reference to it anywhere.

Please advise how I can start a new line within a cell.
Jossi
SoftMaker Volunteers
SoftMaker Volunteers
Posts: 1321
Joined: Fri Dec 05, 2003 10:47 pm
Location: Luebeck, Germany

Re: How to force text wrap or enter a linefeed?

Post by Jossi »

In PlanMaker, it's Ctrl+Enter.
@SonCook
Posts: 2
Joined: Wed May 28, 2025 1:03 am

Re: How to force text wrap or enter a linefeed?

Post by @SonCook »

I have a mailing list with LNAME, FNAME, ADDR1, ADDR2, CITY, STATE, CODE all in one cell with each data item separated by a comma. I can force the text wrap after each item by typing CTL+Enter. Can I use SUBSTITUTE() change the commas into a 'Ctl+Enter' or '^p'? I want all the data in a single cell stacked on top of each other not run out on a single line. Doable?
SuperTech
SoftMaker Team
SoftMaker Team
Posts: 4069
Joined: Wed Mar 11, 2020 5:31 pm

Re: How to force text wrap or enter a linefeed?

Post by SuperTech »

Yes. You can replace each comma with a line break by entering the following formula in a temporary cell:

Code: Select all

=SUBSTITUTE(A1, ",", CHAR(10))
If each comma is followed by a space, use:

Code: Select all

=SUBSTITUTE(A1, ", ", CHAR(10))
The formula cannot change the contents of the source cell directly. After applying it to the required rows, copy the resulting cells and use Paste special | Values to paste the converted text into the desired cells. You can then delete the temporary formula column.
Post Reply

Return to “PlanMaker 2021 for Windows”