Add a space between two values

A

Anthony

I have a query and I have to add a space between two values, see my exp below:
Station Name & Item: [DBA_DEVICES]![deviceName] & [DBA_ITEMS]![itemId]
This currently displays it as SS-HVICU04521 and I need it to display as
SS-HVICU 04521 with a space in the middle.

Thanks for everyones help in advance.
 
J

Jeff Boyce

Anthony

[Field1] & " " & [Field2]

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.
 
A

Anthony

Thanks everyone, this works. I appreciate it.

Anthony

Jeff Boyce said:
Anthony

[Field1] & " " & [Field2]

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.

Anthony said:
I have a query and I have to add a space between two values, see my exp
below:
Station Name & Item: [DBA_DEVICES]![deviceName] & [DBA_ITEMS]![itemId]
This currently displays it as SS-HVICU04521 and I need it to display as
SS-HVICU 04521 with a space in the middle.

Thanks for everyones help in advance.


.
 

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