I am using MS Excel on a Mac.
I have a formula.
Guests!A1 & " " & Guests!B1 & I WANNA PUT NEWLINE HERE Guests!C1
... How do you do this????
Thx!
feedback
|
|
CHAR() is the appropriate function for an Excel formula, and you need character 10 (Line Feed) to create a line break. Example:
You'll need to have word-wrapping enabled on the cell, otherwise CHAR(10) will just look like a little square. vbCRLF would be the right choice when using VBA (i.e., a macro). The question is about formulas, not VBA. Office for Mac doesn't even support VBA. | |||
|
feedback
|
Replace | |||||
feedback
|