I'm trying to figure out a way to ingest many .csv files. The situation I have is an Alteryx workflow that outputs daily a .csv with ~300 fields and 40k rows.... one per day.
Occasionally I have added and removed fields from this output over the past 300 days.
There is one field, that has not changed it's name or been removed over the course of the 300 days. I need to ingest this field only. Lets call this field.... "Current Commit Date".
I'm trying to ingest this "Current Commit Date" to see what a materials commit date was when it showed up on the .csv and compare it to what it currently is.
Example:
Inventory commits - 2022-01-01.csv
Inventory commits - 2022-01-02.csv
Inventory commits - 2022-01-03.csv
etc...
When ingesting this field, what I'm ultimately after is to get to a table like this:
'Date','Material','Current Commit Date'
'1/1/2022','123-456-789','3/1/2022'
'1/2/2022','123-456-789','3/5/2022'
'1/3/2022','123-456-789','3/5/2022'
Is there a way to do this?
Is there a way to only ingest one field? If not, could it be possible if they were .xls files instead?
Thanks in advance!!!