Hi, I have an ask which is simple when looked at it, but I'm making it complex in my head, hence I'd need some help from you guys.
The demand is that,
For example :
My company 'X' has n number of clients. Every day I ask my clients to send a portfolio report to me so that I can reconcile it with my report.
Now, the report that these clients send is not in the standardized format that my company has put in place. So, currently, the employees have to manually format it to the standardized look.
Coming to the FORMAT, it is nothing but a swapping of position and renaming the columns of the client files, the data inside those columns remain the same.
Check the below tables for more clarity.
| client 1 | | | |
| region | id | sales | category |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| client 2 | | | |
| contract number | type | Money made | area |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| client 3 | | | |
| tag | section | zone | transactions |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| Standard File | | |
| Department | Agreement Number | Trade | Province |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
| <data> | <data> | <data> | <data> |
Now, the solution which I thought will be the most feasible is to make an analytical app and give the end-user maximum control of this, since the clients can keep changing in the future and every client has their own respective format.
This is where I'm stuck, can I simply ask the end-user to input the relevant column names from the client files matched to the standard file, like :
| Input column name from client file matching with the below | |
| Department | |
| Agreement Number | |
| Trade | |
| Province | |
After the end-user enters the column names from the client file the alteryx catches the entire data inside those columns and copies them to the standard file.