Help with CONCATENATE and ALT ENTER

B

BRGIII48

I’m trying to use the CONTATENATE formula to create a mailing address from a
database. The problem I’m having is that I need to put the name on one line
and the address and a separate line within the same cell. What is the best
way to accomplish this? Can ALT ENTER be used in the CONCATENATE FORMULA?
 
J

JE McGimpsey

BRGIII48 said:
I’m trying to use the CONTATENATE formula to create a mailing address from a
database. The problem I’m having is that I need to put the name on one line
and the address and a separate line within the same cell. What is the best
way to accomplish this? Can ALT ENTER be used in the CONCATENATE FORMULA?

In MacXL the keyboard shortcut is CTRL-OPT-ENTER. To use in a formula,
use CHAR(13), e.g.:

="line 1 text" & CHAR(13) & "line 2 text"

or equivalently:

=CONCATENATE("line 1 text", CHAR(13), "line 2 text")


Make sure that the cell is set to wrap text.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Categorizing Contacts 2
Lose the 0 in the Total cell 6
Maybe Update Query? 2
Help with my Lotto code please 13
Help with my Lotto code please 3
SUMIFS help 3
Concatenate formula 2
Concatenate formula 0

Top