CONCAT
Last updated
Was this helpful?
Last updated
Was this helpful?
CONCAT combines specified values into one new value, appending them after each other.
If you are combining multiple components with the same characters, consider using .
If you are working on potentially unknown values, consider using .
It is common practice to have two separate for a name - one for the first and one for the last name. If, once these data are collected, you want to treat the full name as one combined piece of information, use CONCAT
as in the example above. This would return a full name, e.g. "Jamie Fox".
The " "
, with a space in between the quotation marks, adds a space between the first name and last name. If you want to include a middle name in the full name, the expression would look like this:
This example would return a name like "Samuel Leroy Jackson".