Hi,
the simple technique is to convert your intervals into tuple sets.
For instance, if I consider the sched_cumul example where we have
dvar interval itvs[h in Houses][t in TaskNames] in ReleaseDate[h]..(maxint div 2)-1 size Duration[t];
in the postprocess part I add
tuple itvs_result
{
int h;
string t;
int s;
int e;
}
{itvs_result} results={<h,t,startOf(itvs[h][t]),endOf(itvs[h][t])> | h in Houses,t in TaskNames};
and then I can use SheetWrite on that tuple set
regards
------------------------------
[Alex] [Fleischer]
[EMEA CPLEX Optimization Technical Sales]
[IBM]
------------------------------