Returns the concatenation of two
or more strings.
Syntax
Concat(
s1
[,
s2
...])
Parameters
Parameter
|
Description
|
s1
|
The first string in the set.
|
s2
(Optional)
|
Additional strings to append to the set.
|
Examples
The
following expressions are examples that use the
Concat
function:
Expression
|
Returns
|
Concat("ABC", "DEF")
|
ABCDEF
|
Concat("Tony", Space(1), "Blue")
|
Tony Blue
See also
Space
.
|
Concat("You owe ", WordNum(1154.67, 2), ".")
|
You owe One Thousand One Hundred Fifty-four Dollars And Sixty-seven Cents.
See
also
WordNum
.
|
|
|
|