Update Query Formatting

G

Guest

I am running an update query where I am updating one field in a table with
the contents of 3 fields from the same table. The query works fine but it
updates the reslts with no spaces between each value - so the query critieria
is this

[Main Gant Database].[Title] & [Main Gant Database].[Firstname] & [Main Gant
Database].[Additional Fname] & [Main Gant Database].[Surname]

And the result is

MRIAINRICHARDGIBBONS and I want it to be MR IAIN RICHARD GIBBONS
 
A

Allen Browne

Try this:
[Main Gant Database].[Title] + " " & [Main Gant Database].[Firstname] +
" " &
[Main Gant Database].[Additional Fname] + " " & [Main Gant
Database].[Surname]
 

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