Skip to content

Concatenate column

Description

The Concatenate Column activity combines values from two or more columns into a single output column, separated by a user-defined delimiter (such as a comma or space). This is useful for creating labels, summaries, or composite keys.

Use this activity to:

  • Merge multiple string fields into a unified description.
  • Create display-friendly identifiers from existing fields.
  • Format structured output fields like “Name, ID” or “City - Country”.

Use case: Combine employee_id and name into a single column called Emp_info to display in a dropdown or export.

Input

Input TypeRequiredDescription
DataRequiredTabular input data with text or numeric columns to concatenate

Output

Output TypeFormatDescription
DataJSONTransformed data with a new concatenated column

Configuration Fields

Field NameDescription
Input ColumnsList of columns whose values will be concatenated.
Output ColumnName of the new column that stores the concatenated result.
SeparatorCharacter(s) used to separate values (e.g., ,, -, or a space).
Include OriginalIf enabled, retains the original columns in the output. If disabled, only the output column is returned.

Sample Input

employee_idnameagedepartmentdesignation
E001John Doe32SalesSales Manager
E002Jane Smith28EngineeringSoftware Developer
E003Ali Khan40FinanceFinancial Analyst
E004Maria Gonzalez35MarketingMarketing Specialist
E005Rahul Sharma30IT SupportNetwork Administrator

Sample Configuration

FieldValue
Input Columns["employee_id", "name"]
Output ColumnEmp_info
Separator", "
Include Originaltrue

Sample Output (Include Original = true)

employee_idnameagedepartmentdesignationEmp_info
E001John Doe32SalesSales ManagerE001, John Doe
E002Jane Smith28EngineeringSoftware DeveloperE002, Jane Smith
E003Ali Khan40FinanceFinancial AnalystE003, Ali Khan
E004Maria Gonzalez35MarketingMarketing SpecialistE004, Maria Gonzalez
E005Rahul Sharma30IT SupportNetwork AdministratorE005, Rahul Sharma