Concatenation

T

Tommie

If I am attempting to concatenate two fields: how and where should I put the
function criteria?? I'm sure I can use the ConcatenateField function but
where?
Thanks!
 
J

JMorrell

The help section states:

Combining text values
You can combine text values from multiple fields or controls by using the
text concatenation operator (&) in an expression. The concatenation operator
concatenates two text strings and returns a single string.

For example, to return an address like:

507 20th Ave. E., Seattle WA 98122

type this expression:

=[Address]&", "&[City]&" "&[Region]&" "&[PostalCode]

Hope this helps
JMorrell
 
Top