TEXT + TEXT ( + Operator )
The TEXT + TEXT operator returns a single text value by concatenating the two text values you specify. .
The TEXT + TEXT operator works with any two text values including Text variables, text expressions, and functions returning text values.
Operator | Description | After you drag and drop the operator into the script tab: | Expression returns: |
+ | ⟦Text⟧ + ⟦Text⟧ | Replace both ⟦Text⟧ placeholders with the variables you want to add/concatenate in your script. | A TEXT value. |
Example
The following script adds the three Text variables, Street Address, City, and State together, separating each variable with a comma.
Street Address + ", " + City + ", " + State