(string text1)
The CONCATENATE function joins arguments into one text string.
Example: CONCATENATE(a,b,1,[...]) is a string (ab1[...]).
text1: Required. The first text item to be concatenated.
Example
Concatenate (combine) the content of fields "Sell-to Customer No." and "Sell-to Customer Name":
concatenate(&SelltoCustomerNo," ",&SelltoCustomerName)
Notice the space between No and Name.
Resulting in:
Comments
Please sign in to leave a comment.