cell formatting with formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello members,

my formula in A1 is
=TEXT(H22,"000000000")
&TEXT(J22,"000000000")

How can I force a *display* in A1 *to be* in two lines <one for each of my
*text sub-formula*>

thanks in advance for any suggestions.
 
Hello members,

my formula in A1 is
=TEXT(H22,"000000000")
&TEXT(J22,"000000000")

How can I force a *display* in A1 *to be* in two lines <one for each of my
*text sub-formula*>

thanks in advance for any suggestions.

The function "Concatnate" should work:
=Concatnate(H22,"000000000","enter the text",J22,"00000000)
 
=TEXT(H22,"000000000")&CHAR(10)&TEXT(J22,"000000000")

You will probably need to format the cell to wrap text. Format
cells->Alignment->Check the Wrap Text.

Regards,

OssieMac
 
Use the formula:

=TEXT(H22,"000000000") & CHAR(10) & TEXT(J22,"000000000")

Then select the cell that contains the formula
Choose Format>Cells
 

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