I tried char(10)
and char(13)
but they don`t work by me. I use Excel 2007 and my task is to replace new lines with intervals
Asked
Active
Viewed 6.3k times
19

BruceWayne
- 22,923
- 15
- 65
- 110

Radoslav Ivanov
- 209
- 1
- 2
- 3
2 Answers
22
Use CHAR(10) and Turn on Wrap Text option. It should work.

vanathaiyan
- 935
- 1
- 10
- 19
-
2This is OS-dependent. CHAR(10) for Windows and CHAR(13) for Mac. – Hendra Anggrian Sep 07 '20 at 14:20
-
2
-
2
-
1@HendraAnggrian You can use `CHAR(10)&CHAR(13)` if you need to make sure it works on both – Andross Mar 10 '23 at 03:24
0
Try using the [Alt] + [Enter] key. This will create a new line feed in the cell.

user716255
- 352
- 1
- 6
- 18
](http://stackoverflow.com/questions/6116403/turn-excel-line-break-into-br) – rajah9 Dec 18 '15 at 16:15
](http://stackoverflow.com/q/6116403/1652222) worked for me. Provide some more details what exactly you are trying – ManishChristian Dec 18 '15 at 16:25