I use Infinity to make charts with data from CSV files. This works if the column names as in the CSV header don’t change. But in some of my CSV files (that are daily or monthly updated) I have column names that can change. Think of “Top 10 Customers” so it can change who these are. Example for CSV:
DATUM,Übrige,Hostx,Infomac,Swalb
01.07.24,796769,453431,331353,200857
01.08.24,801440,453175,334181,199029
01.09.24,801413,454126,335603,197302
01.10.24,802129,454928,336804,195769
The next month it may look like this:
DATUM,Übrige,Hostx,Infomac,Minx
01.07.24,796769,453431,331353,200957
01.08.24,801440,453175,334181,199929
01.09.24,801413,454126,335603,198302
01.10.24,802129,454928,336804,198769
01.11.24,802229,455928,337804,199769
So the names of the companies in the header may change so I cannot refer to them in the configuration when I setup the columns within Infinity. Is it possible to refer to the columns as #1 #2 or similar? Is it possible at all to work with such CSV files?