Hi everyone,
Thank you for your time,
The input file's column names are not standard. Is it possible to map the correct field names to the ones in the file using an interface tool? Below is an example.
| Acc No | Amnt |
| 451510 | -545.7 |
| 128100 | 545.7 |
| 451510 | -545.7 |
| 128100 | 1457.88 |
| 423100 | -1457.88 |
How the field names should be:
| Account Number | Functional Amount |
| 451510 | -545.7 |
| 128100 | 545.7 |
| 451510 | -545.7 |
| 128100 | 1457.88 |
| 423100 | -1457.88 |
for this, I have a reference file
| Field Name |
| Account Number |
| Functional Amount |
so I want to let users decide and map the correct field names from the reference file.
I found a similar solution here
But instead of letting the user type, I would like them to use, for eg, a drop-down tool to map the correct field names.
Thanks in advance for your help