Skip to content

Convert currency

Description

The Convert Currency activity transforms amount values from one currency to another using up-to-date exchange rates. Input values must follow the ISO 4217 format (e.g., 100.00 USD). You can convert to a target currency and store the result in a separate column.

Use this activity to:

  • Normalize all transaction values to a single currency (e.g., INR, USD).
  • Prepare financial reports by standardizing currency across global datasets.
  • Retain or discard original columns based on your analysis needs.

Use case: Convert international salaries (in USD, EUR, GBP, etc.) to INR before budgeting or taxation processing.

Input

Input TypeRequiredDescription
DataRequiredInput data must contain at least one column with values in amount + currency code format (e.g., 12000.00 USD).

Output

Output TypeFormatDescription
DataJSONTransformed data with converted currency values

Configuration Fields

Field NameDescription
Column NameSelect the column containing values like 12000.00 USD.
Output ColumnName of the column where the converted values will be stored.
Convert ToThe ISO currency code to convert all values into (e.g., INR, USD, etc.).
Include OriginalIf true, retains all original columns. If false, only includes the converted output.

Sample Input

employee_idnameamount_in_iso
E001John Doe20000.00 USD
E002Marie Dupont35000.00 EUR
E003Carlos Gómez30000.00 GBP
E004Ravi Patel120000.00 INR
E005Sophie Müller50000.00 JPY

Sample Configuration

FieldValue
Column Nameamount_in_iso
Output ColumnINR
Convert ToINR
Include Originaltrue

Sample Output

employee_idnameamount_in_isoINR
E001John Doe20000.00 USD1727369.00 INR
E002Marie Dupont35000.00 EUR3167388.86 INR
E003Carlos Gómez30000.00 GBP3226744.82 INR
E004Ravi Patel120000.00 INR120000.00 INR
E005Sophie Müller50000.00 JPY27718.43 INR