"Merge" to text fields in query.

selvsagt

Registered User.
Local time
Tomorrow, 00:35
Joined
Jun 29, 2006
Messages
99
Hi,

I am trying to "merge" to textfields in a query.
One field is [domene], the other has the name [VLini].

I need these fields to end up like this: DOMAIN/VLINI
I am trying to make a security check with AUTH_USER from the domain user, but it also requires the domain name. Since there are users from multiple domains I need to merge these two in to one field called username.

I have tried:

username: [domene]"/"[VLini] but this only produces a "-1" answer.

Anyone?
 
try this.
username: [domene] & "/" & [VLini]
 
Thanks, it almost works...
I get:

DOMENEVVLINI

It adds a "v" instead of a "/" ???
 
Forget it... my bad..I had already added the "/" in the domene field.


Thanx a bunch! You rock!
 

Users who are viewing this thread

Back
Top Bottom