Hi I have 4 columns that I have dynamically renamed the header it based on user input.
Example:
| Fund | Cost in CY (Currency) | Purchase in PY (Currency) | Cost | Cost in PY (Currency) |
| ABC | 145 | 523 | 21 | 32 |
| NKL | 456 | 654 | 52 | 21 |
| AMN | 456 | 756 | 456 | 23 |
Rules:
1. Take text input from the user for example in text input (alteryx app) we give input as USD
2. Then we have to change the column name which has Currency in it and replace it with the currency
3. Below is the output example
| Fund | Cost USD | Purchase USD | Cost | Cost USD |
| ABC | 145 | 523 | 21 | 32 |
| NKL | 456 | 654 | 52 | 21 |
| AMN | 456 | 756 | 456 | 23 |