Hi Pradnya,
You should use the Derived Column
transformation instead of the Alter Row
transformation.
In your data flow, add a Derived Column
transformation after your source transformation.
In the Derived Column
transformation, you can define an expression to update the country
column.
iif(country == 'Espana', 'Spain', country)
In the Derived Column
settings, you can create a new column or update the existing country
column with this expression.
If you want to update the existing country
column, select it from the dropdown and use the expression above.