Report query syntax to create a new line ?

Jack Spratt

Registered User.
Local time
Today, 19:07
Joined
Nov 4, 2007
Messages
20
I am creating a field in a report query where I wish to form the string result to appear as several lines in a report field.

eg.

multiline: ([field1]&Chr(10)&[field2])

I just get a square block character showing in the report field. Is it possible to do this ??

(Reason for the expression is that I am 'closing up' blank addresses/address fields)

thanks
 
Try changing this:
Code:
([field1]&Chr(10)&[field2])

to this:
Code:
([field1] & Chr(13) & Chr(10) & [field2])
 
Many thanks Bob !
 

Users who are viewing this thread

Back
Top Bottom