CONCATENATE formatting question

  • Thread starter Thread starter THX_1138
  • Start date Start date
T

THX_1138

I have the following values each in seperate cells:

1 (cell A1)
9.50E-5 (cell A2)
CARD (cell A3)

I wish to have a single cell looking like:

1 9.50E-5 CARD

So far, I type in a cell:

=CONCATENATE(A1," ",TEXT(A2,"SCIENTIFIC")," ",A3)

The cell returns:

#VALUE!

So, what am I doing wrong here
 
Try


=CONCATENATE(A1," ",TEXT(A2,"0.00E+00")," ",A3)

or better

=A1&" "&TEXT(A2,"0.00E+00")&" "&A3
 

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