date concatenation confusion

S

spence

I have three columns: FirstName, LastName, and Date.
I want to create a fourth column that looks like this:

LastName, FirstName:Date

Assuming FirstName is in column A, LastName is in column
B, and Date is in column C, I am using the following
formula in column D for my concatenation:

=B1&","&" "&A1&":"&C1

In column D where the date should be I'm getting a five
digit number whose source baffles me. (For instance, where
I should have Smith, Andi:5/1/2003 I'm instead getting
Smith, Andi:38107) Can someone tell me where this five
digit number is coming from and how to make it show up
properly as the date?

Thanks,
Spence
 
P

peter

Why not use the concatenate formula itself

In other words, write in that fourth column the following

=concatenate(b1," ",a1," ",c1)? where the " " adds a blank between each entry?
 

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

Top