I'm attempting to use the function listed in the FAQ above to concatenate fields across two tables into a single field in an append query. I am not too sure of the syntax I need to use.
My tables look like this:
tblManualInstall:
Sequence
OldSerialNum
Description
Group
Subject
tblBatches:
BatchNum
BatchID
EmplID
OldSerialNum
NewSerialNum
Coordinator
I want to run an append query to update a table in another database, and I want the result to look like this:
Coordinator: <data>; OldSerialNum: <data>; NewSerialNum <data>; Description <data>.
Any ideas? Am I using the correct function?