GDXXRW is a Windows only tool that reads data from Excel and writes it to GDX from where your code loads the data into GAMS. You could replace GDXXRW with GAMS Connect which is platform independent.
I am trying to get it run and I am not sure if it is enough to replace the gdxxrw line s with the gams connect line or do I have to write the code complete new.
I am quite new in this programming and I am very grateful for any advices.
The GDXXRW line uses a file tasks.txt as input. This file is created on the fly your GAMS code ($onecho > tasks.txt). This file contains instructions what data should be read from the Excel by GDXXRW.
With Connect, such instructions need to be implemented in a YAML file.
With Connect you do not need to write a GDX file and then import the symbols from it but you can directly write the symbols to GAMS (using the GAMSWriter). There is also another difference: GDXXRW has the maxDupeErrors option that allows for duplicate records - in Connect duplicate records are allowed in general. Only if you write to GDX or GAMS you have to take care of duplicate records and therefore, I specified duplicateRecords: first with the GAMSWriter.
Note that I have used abbreviated YAML syntax for dictionaries with the ExcelReader - I left the first symbol (t) in regular YAML syntax so that you can see the difference.