How do you do this?

Nirious

Registered User.
Local time
Today, 07:05
Joined
Jul 31, 2004
Messages
106
I have a table with two columns ( OrderNr and Client)
So lets say I have in this table three records:

Code:
ORDER          CLIENT

100001         AA0001
100002         RA0005
100003         BV0034

I would like to have them printed(or just shown on screen) like this:

100001/AA0001;100002/RA0005;100003/BV0034

is there a way to get this done?
 
using vba code - yes.

Via sql statement, not likely....
Code:
Select [Field1] & "/" & [Field2] as [newname]
From [table]


Vince
 
Write a query on the table with an expression OrderNr & '/' & Client.

Should do the trick...
Keith.
 

Users who are viewing this thread

Back
Top Bottom