Split Currencies
Description
This activity splits the specified column containing amount and currency into two different columns, one with the amount and the other with its currency.
Input
Data only
Output
Transformed Data
Configuration Fields
- Column Name Allows single select, must contain amount with currency.
- Include Original
- Enabled Includes the input data along with transformed column .
- Disabled Gives only the transformed column .
Sample Input
employee_id | name | salary |
---|---|---|
E001 | John Doe | 75000 USD |
E002 | Jane Smith | 85000 $ |
E003 | Ali Khan | 90000 AED |
E004 | Maria Gonzalez | 68000 USD |
E005 | Rahul Sharma | 72000 Rs |
Sample Configuration
Sample Output
employee_id | name | salary | salary_Amount | salary_Currency |
---|---|---|---|---|
E001 | John Doe | 75000 USD | 75000 | USD |
E002 | Jane Smith | 85000 $ | 85000 | $ |
E003 | Ali Khan | 90000 AED | 90000 | AED |
E004 | Maria Gonzalez | 68000 USD | 68000 | USD |
E005 | Rahul Sharma | 72000 Rs | 72000 | Rs |