Append to an Append Query?? (1 Viewer)

PaddyIrishMan

Registered User.
Local time
Today, 04:02
Joined
Jun 5, 2002
Messages
166
Hi all,

Just wondering if anybody has any thoughts on the following?

At the Autoexec event, an append query runs, gathers the latest data from another database & appends to a table in the local database.

What I want to do is:
For each item returned from the Append query, prepend "CR".

I.e. 100, 120 & 350 returned from the external database, I want to append CR100, CR120 & CR350 to my local table.

any ideas??

Regards,
Patrick
 

Rob.Mills

Registered User.
Local time
Yesterday, 23:02
Joined
Aug 29, 2002
Messages
871
What you need to do is setup a string expression. Try typing this where the name of the field from the other table is:

"CR" & FieldName

When you exit out of the field it will change it to:

Expr1: "CR" & FieldName
 

PaddyIrishMan

Registered User.
Local time
Today, 04:02
Joined
Jun 5, 2002
Messages
166
Perfect!!

Thanks Rob!
 

Users who are viewing this thread

Top Bottom