cell displays formula instead of value

  • Thread starter Thread starter Jeff Higgins
  • Start date Start date
J

Jeff Higgins

Hi,
Excel 2003 SP2
I have a new blank workbook,
and on a new blank worksheet
I format columns A - D as Text.

A1 = [This_]
B1 = [is_]
C1 = [text.]
D1 = [=CONCATENATE(A1, B1, C1)]

D1 now displays [=CONCATENATE(A1 ,B1, C1)]
instead if the expected [This_is_Text.]

Please help.
I have hours in this :((
Thanks
Jeff Higgins
 
Jeff
D1 should have been formatted as "general". Format it, re-type formula?
HTH

Beege
 
Beege said:
Jeff
D1 should have been formatted as "general". Format it, re-type formula?
HTH

Beege

Beege,
I guess that makes sense, after all
=CONCATENATE(A1, B1, C1) is text.

After all this, I think I'll grab a big piece
of bubble gum and take a stroll.

Appreciate the help, thanks.
Jeff
 
A shorter version of your formula can be written as:

=A1&B1&C1

& is known as the concatenation operator (i.e. it "joins" strings
together).

Pete
 
Pete_UK
A shorter version of your formula can be written as:

=A1&B1&C1

& is known as the concatenation operator (i.e. it "joins" strings
together).

Pete
Thanks, &appreciate the note.
Jeff
Sorry if I emailed you.
 

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