date concatenation confusion

  • Thread starter Thread starter spence
  • Start date Start date
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
 
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?
 
Back
Top