A query is only a view of the data in a table! Unless you don´t add data
into a table or delete or create a table.
There is at least 2 ways to do this in. And I only know how to explain one
of them (sorry).
Create a tablequery (where you creat a new table with the conatenated data
in one field and the primary key in the second field (you need some field to
identifye which data goes to which record in your original table.
Then create a field in you original table to hold the conatenated data. And
last create a new query which add the data to your original table. This is
one way to go, not the best way I asume but it works!
Now to my Q: Why do you need to do this if you can do it whenever needed?
What I´m after here is normalization so if you already have the data you
need you can always conatenate the data whenever you feel like. You don´t
have to store it, or?
// Niklas
DWS said:
I have successfully accomplished combining data from 2 fields in a query
into a single field in the same query. I cannot seem to do the same with a
table. Seems like it should be easy. Can anyone help?