Concatenating Columns

kholm

Registered User.
Local time
Today, 13:28
Joined
Jun 25, 2001
Messages
63
I would like to combine the data that is in multiple fields into one field. How would I go about this.

Kristin
 
Could you give me a little more info? What type of fields are they? maybe an example. Are the fields in the same Table?
 
more info

The fields are from the same table. When the info is imported from a text file, it is comma delimited and separates each one, but I need all 10 fields to be one. If I could do this in the table level or query level, that would work.
 
You should not store the combined field. You can concatenate the columns whenever you want to in a query.

Select Fld1 & Fld2 & Fld3 As Mush, ...

If you want delemiters between the fields -

Select Fld1 & "," & Fld2 & "," & Fld3 As Mush, ...
 
What i understand is that the 10 fields the import is creating are the ten records that you would like to have in one field.

If this is the case, check the "Has Field Names" action argument in the macro. Set it to NO.
 
Query

The query idea worked great. I didn't use As Mush and am not sure what that means.

Kristin
 

Users who are viewing this thread

Back
Top Bottom