Very new to Alteryx. I know I could pre-process this file in Python, but I want to make this simple for others and keep it within my Alteryx workflow.
Let's say I have a file that always comes in the following format.
Column names are: C1, C2, C3, C4, C5
All columns are STRINGS
But I only want: C2, C3 and C5.
I have a second csv file in this format, which is essentially a dictionary to change the names
C2,NAME
C3,AGE
C5,LOCATION
Going forward I want the following columns ONLY: NAME, AGE LOCATION and I want AGE to be a double.
My actual initial field names are much longer and I have approx 95. This trims down to shorter names and about only 30 fields. How do automate this?