join two fields in a question

V

Victor

i know how to combine two fields in a question to get for example name and
surname together, but i can't get a spacing between the name and surname ex.

this is the way i want it...
olle andersson

this is the way i get it:
olleandersson ...... Uttryck1: [name]+[surname]
 
D

Duane Hookom

Use the ampersand to concatenate text/string values:
Uttryck1: [name] & " " & [surname]
 
Top