Hi there,
This might be a simple question, but I’d like to have some clarification.
Suppose I have a set AllPeriod with its defined elements…
set
AllPeriod
/2000*2100/
…and the subset is defined as:
set
Period(AllPeriod)
I know that you can put single elements into the set by
Period(AllPeriod) = no;
Period("2010") = yes;
Period("2011") = yes;
What I want to do is put the elements 2010 to 2090 into the subset Period without having to manually write:
Period("2010") = yes;
Period("2011") = yes;
...
Period("2089") = yes
Period("2090") = yes
Is the some simplified way of writing this, for example like Period(/2010*2090/)?
Thanks in advance.