How to I carriage return in "text" cell?

  • Thread starter Thread starter Brett
  • Start date Start date
B

Brett

How can I do a carriage return in a text cell? It alway puts me in
another cell when I press <enter>.

Also, can I use bullets in a text cell?

Thanks,
Brett
 
I'm not going to be much help, but what you need to do is
write your text string in three parts:
" first part of text " & CHAR(??) & " last part of string "
I can't remember the character code for carriage return
(line feed??), but when you find it, replace the "??" in my
example with that code. It might be 60.
 
10, as in:

="asdf"&char(10)&"qwer"


I'm not going to be much help, but what you need to do is
write your text string in three parts:
" first part of text " & CHAR(??) & " last part of string "
I can't remember the character code for carriage return
(line feed??), but when you find it, replace the "??" in my
example with that code. It might be 60.
 

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