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!

link|improve this question
You should add an "r" to the "macos" tag – iDevlop Nov 4 '09 at 16:57
I was about to remove the tag, then I realised it is for "MacOS" not "macros". – Charles Roper Jan 22 '10 at 20:10
feedback

2 Answers

CHAR() is the appropriate function for an Excel formula, and you need character 10 (Line Feed) to create a line break. Example:

Guests!A1 & " " & Guests!B1 & CHAR(10) & Guests!C1

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.

link|improve this answer
feedback
=Guests!A1 & " " & Guests!B1 & "<press Alt+Enter>  
" & Guests!C1

Replace <press Alt+Enter> by the actual key combination.
On a Mac, as Coxymla suggested, you will maybe replace Alt with another key ?

link|improve this answer
1  
That trick only works for straight text. If you have a formula it does add a separate line in the formula bar, but that will not translate to the cell formatting. richardtallent's suggesting of char(10) is the way to go. – guitarthrower Nov 4 '09 at 16:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.