Concatenate Column
Description
Combines the values of multiple columns into a single column using a separator.
Input
Data only
Output
Transformed data with a new column containing the concatenated data.
Configuration Fields
- Input Columns Allows the input of multiple column names.
- Output Column Specifies the column name for the new concatenated column.
- Include Original
- Enabled Keeps the original data columns along with the output column.
- Disabled Only includes the output column.
Sample Input
employee_id | name | age | department | designation |
---|---|---|---|---|
E001 | John Doe | 32 | Sales | Sales Manager |
E002 | Jane Smith | 28 | Engineering | Software Developer |
E003 | Ali Khan | 40 | Finance | Financial Analyst |
E004 | Maria Gonzalez | 35 | Marketing | Marketing Specialist |
E005 | Rahul Sharma | 30 | IT Support | Network Administrator |
Sample Configuration
Sample Output
employee_id | name | age | department | designation | Emp_info |
---|---|---|---|---|---|
E001 | John Doe | 32 | Sales | Sales Manager | E001, John Doe |
E002 | Jane Smith | 28 | Engineering | Software Developer | E002, Jane Smith |
E003 | Ali Khan | 40 | Finance | Financial Analyst | E003, Ali Khan |
E004 | Maria Gonzalez | 35 | Marketing | Marketing Specialist | E004, Maria Gonzalez |
E005 | Rahul Sharma | 30 | IT Support | Network Administrator | E005, Rahul Sharma |