combining columns but having "enter" between

Indep99

Registered User.
Local time
Today, 10:11
Joined
Dec 21, 2011
Messages
23
Hi,
I am trying to combine a few columns in a query but I would like it to the "enter" function added in between each column so for example
A b c
Text 1 text 2 text 3

result:
Text 1
Text 2
Text 3
 
In the Field box of the query designer:
Code:
SomeName:[Field1] & Chr(13) & Chr(10) & [Field2]
 

Users who are viewing this thread

Back
Top Bottom