Consider I want to execute to parameter (paramter1 and parameter2). I do the following:
$onEcho > Textfile.txt
par = parameter1 rng = parameter1!A1
par = parameter2 rng = parameter2!A1
$offEcho
execute_unload 'export.gdx', parameter1 parameter2;
But instead of writing that line two times, could I do something like this:
$setGlobal Parameter parameter1 parameter2
$onEcho > Textfile.txt
par = %parameter% rng = %parameter%!A1
$offEcho
execute_unload 'export.gdx', %parameter%;
However, this code does not work. How can I specify mine parameters one place instead of writing them mulitple times?
In GAMS you can define macros, but for your purpose, $batInclude might be better:
EDIT: Now, that I understood your question better, after discussing it in the comments, here is a new solution using the put facility: