CONCATENATE

E

Eva

Hi
I am working on a querry where I need to use data from one table add @ add
"text"
In Excel it is CONCATENATE function, but I can't find it in Access.
Do you know what function to use?
Thanks
 
F

fredg

Hi
I am working on a querry where I need to use data from one table add @ add
"text"
In Excel it is CONCATENATE function, but I can't find it in Access.
Do you know what function to use?
Thanks

Why do you need a special function?
NewField:[FieldName] & "@text"
or
NewField:[FieldName] & "@" & [OtherFieldName]
 
E

Eva

Great! Thank you. I didn't know
--
Greatly appreciated
Eva


KenSheridan via AccessMonster.com said:
Eva:

The concatenation operator in Access is the ampersand symbol. To add ' text'
to each value from a field in a table put something like the following in the
'field' row of a blank column in query design view:

NewFieldName: [FieldName] & " text"

Where FieldName is the name of the field in the table, and NewFieldName is
the name of the column heading you want the concatenated value to appear
under in the query's result table.

Ken Sheridan
Stafford, England
Hi
I am working on a querry where I need to use data from one table add @ add
"text"
In Excel it is CONCATENATE function, but I can't find it in Access.
Do you know what function to use?
Thanks

--



.
 

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