Appending Several Fields to same target

  • Thread starter Thread starter John
  • Start date Start date
J

John

Is there a way I can append text data from say 3 different
fields in the source table to the same field in the target
table.
 
If you mean you want to take FieldA, FieldB, and FieldC and put them all into
Field A of the target table, then yes it can be done. It is a little hard to
tell you exactly what to do without knowing all the details. But if you know
how to make an append query and are using the query grid you would make a
calculated field

Field: FieldA & " " & FieldB & " " & FieldC
Table: Blank
Destination: TableTarget.FieldA
 
That did it. Thanks a lot. John
-----Original Message-----
If you mean you want to take FieldA, FieldB, and FieldC and put them all into
Field A of the target table, then yes it can be done. It is a little hard to
tell you exactly what to do without knowing all the details. But if you know
how to make an append query and are using the query grid you would make a
calculated field

Field: FieldA & " " & FieldB & " " & FieldC
Table: Blank
Destination: TableTarget.FieldA


.
 

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

Back
Top