Hi everyone, my name is Matteo. I have a problem or rather I don’t know how to proceed with a problem in gams. In practice I have “s” sectors and “i” assets, I have to take the data of a score from an excel sheet where on each sheet there is the score for each i, so they are one-dimensional, while the sectors would be the various sheets. Is there any way to do this?
This is the code i use, but is not good:
SET
k criteri /pe,pbv,roe,roa,roi,il,de/;
SET
s settori /1*8/;
$onMulti
SET i stocks /15/;
Parameter KScor(s,i);
$call “gdxxrw KScore.xls par=KScor”;
$gdxin KScore.gdx
$load KScor
display KScor;
i attached the image of the excel data.