carriage returns in excel

  • Thread starter Thread starter darrellps
  • Start date Start date
D

darrellps

Hi
What i am trying to achieve is the three cells
A = FIRST NAME
B = MIDDLE NAME
C = LAST NAME
I wish to convert into single cell by CONCATENATE
then have a carriage return or return as follows
first name(return)
middle name (return)
last name (return)


thankyou in advance
Darrell
 
Hi
try
=A1 & CHAR(10) & B1 & CHAR(10) & C1

afterwards goto 'Format - cells - Alignment' and check 'Wrap Text'
 
Frank Kabel said:
Hi
try
=A1 & CHAR(10) & B1 & CHAR(10) & C1

afterwards goto 'Format - cells - Alignment' and check 'Wrap Text'


Thankyou for this it works fine thankyou Frank

Darrell
 

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

Back
Top