Changing Date to Text

itprog

Registered User.
Local time
Today, 10:38
Joined
Jan 4, 2005
Messages
33
I have searched and found references to converting text to dates. I need to go the other way. I have client# field and a date field. I would like to make an update query to populate a new field by concatenating the two fields minus the "/". I am making a new key field in an existing table. Then in the future when data entry is done, I would like to convert the date and client# as they are entered. I was looking at using the left$ or right$ function, but the dates may be in mm/dd/yyyy format or m/dd/yyyy format or m/d/yyyy and so on, depending on the month and day. Is there an easy way to convert the date to a number? I tried datevalue, but it leaves the "/" in there. I'm not sure how to section off the parts of the date I need, when the month and day vary between 1 and 2 digits. Thanks for any help.
 
If they are really dates and not text then they are just a number anyway, so you can use the format function to present them in the format you want.
=YourID & Format(YourDate,"YYYYMMDD")

HTH

Peter
 
itprog said:
I have searched and found references to converting text to dates. I need to go the other way. I have client# field and a date field. I would like to make an update query to populate a new field by concatenating the two fields minus the "/". I am making a new key field in an existing table. Then in the future when data entry is done, I would like to convert the date and client# as they are entered. I was looking at using the left$ or right$ function, but the dates may be in mm/dd/yyyy format or m/dd/yyyy format or m/d/yyyy and so on, depending on the month and day. Is there an easy way to convert the date to a number? I tried datevalue, but it leaves the "/" in there. I'm not sure how to section off the parts of the date I need, when the month and day vary between 1 and 2 digits. Thanks for any help.

I do NOT recommend this. It would be better to use an autonumber for your PK (search the WEB for natural vs surrogate keys). If you want set a unique index on client# and date to prevent duplications, then set a multi-field index. If you want to display the concaternated value to use for identification purposes, that's fine, just use the expression:

=[Client#] & Format([Datefield],"ymd"

But to ADD a field with this data would violate normalization rules.
 
Thank you both. The format function worked.

I do have an autonumber as the primary key. I really meant that I want to use the concatenated fields as a way to check for duplicated entries in the table. There can be multiple entries for the same client number, but only one entry for each client on a particular date.
 
Last edited:
itprog said:
Thank you both. The format function worked.

I do have an autonumber as the primary key. I really meant that I want to use the concatenated fields as a way to check for duplicated entries in the table. There can be multiple entries for the same client number, but only one entry for each client on a particular date.

You don't need to use a concatenated field for that. Look up Multiple field index in Access Help for instructions on how to create a unique index on a combination of fields. That seems to be what you want. Unless you need to use the combined fields as a visual identifier then there is no need to concatenate at all.
 
Scott,
I used the Mutiple Field index and it worked great. No need to concatenate fields. Thank you.
 

Users who are viewing this thread

Back
Top Bottom