Space(5)

B

BFB

In trying to combine two fields I know that Left
([Field1], 10) & Space(5) & Left([Field2], 10) would put
5 spaces between the two fields. What is the expression
if I want Field2 to be on the next line instead of 5
spaces later?
 
P

Peter Doering

In trying to combine two fields I know that Left
([Field1], 10) & Space(5) & Left([Field2], 10) would put
5 spaces between the two fields. What is the expression
if I want Field2 to be on the next line instead of 5
spaces later?

& Chr(13) & Chr(10)

HTH - Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top