Apple - In Mac Excel, how can I replace with newline?
Manually Adding a Line Break
You can do this by pressing Option Enter at the point you want to insert the line break.
It's best that you format the cell(s) as Text to ensure the best results.
Mass Insert Line Break (a.k.a Search/Replace)
You can do this on a mass basis with Search & Replace. As before, it's important to format your cells as text. In the replace field, use the generic formula
="Text1"&CHAR(10)&"Text2"&CHAR(10)"Text3..."
- The text to be replaced in quotes (" ")
- & as the
concat
(concatenate) function CHAR(10)
as the symbol fornewline
Using this methodology, you can "fix" multiple lines of text (like an address). See the animation below for an example: