Concatenate a date and name

R

rd251

Each time I try to concatenate a date cell (ex 03/01/09) with a name file (ex
Johnson) the formul puts the date into its digital representative along with
the name (in the ex the result is 39508 Johnson). Is it even possible to
combine the two files? Any assistance would be greatly appreciated.
 
E

Elkar

You can use the TEXT function to do this. Let's say your date is in cell A1
and your name is in cell B1. Use this formula:

=TEXT(A1,"mm/dd/yy")&" "&B1

HTH
Elkar
 
O

OssieMac

What do you want to do with the date and name. I am a bit confused by your
description but I get the feeling that you want to use it as a file name. Is
this correct?

The forward slash that is the delimiter in the dates in the previous posts
cannot be used in a file name. Use date format like mm dd yyyy or some other
format that has acceptable characters for the file name.

Also consider reversing the dateformat to yyyy mm dd format and if it is the
first part of the file name then you can use it to index the filenames.
 

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