EXCEL Question: Automatic new line / doubling new line commands

Copper Contributor

Hey guys,

I have this in one cell:

• Mit dem S3000 LED Arbeitsscheinwerfer bringt HELLA den bisher stärksten VALUEFIT Arbeitsscheinwerfer auf den Markt
• 800 mm Leitung, DEUTSCH-Stecker im LieferumfangExcel new line command 

• Mit seinen 3.000 Lumen eignet er sich optimal für Anwendungen mit viel Lichtbedarf und ist sogar mit Xenon Lichtperformance vergleichbar

 

And I automatically want it to look like this (with one empty line between):

• Mit dem S3000 LED Arbeitsscheinwerfer bringt HELLA den bisher stärksten VALUEFIT Arbeitsscheinwerfer auf den Markt

• 800 mm Leitung, DEUTSCH-Stecker im Lieferumfang

• Mit seinen 3.000 Lumen eignet er sich optimal für Anwendungen mit viel Lichtbedarf und ist sogar mit Xenon Lichtperformance vergleichbar

 

Is there a possibility to do this? In my opinion there's 3 options:

1- with "format cell" by adding a new line command at the custom settings 

2 - by telling excel somehow to double all new line commands (as of course there is already one  ALT+RETURN between the lines, so if that's doubled there'll be an empty line between)

3- by a command in another row that uses the original cell and endoubles the new lines...

 

Sorry for my non-technical english, I hope you understand what I mean :).

 

Thx a lot! Sebastian

1 Reply

@sebsonntag 

Let's say you have such a value in cell A2.

Enter the following formula in B2:

 

=SUBSTITUTE(A1,CHAR(10),CHAR(10)&CHAR(10))

 

In German:

 

=WECHSELN(A1;ZEICHEN(10);ZEICHEN(10)&ZEICHEN(10))

 

Make sure that Wrap Text is turned on for B2.

You can fill this down if required.