I am looking to extract the lag amount from your schedule, would someone explain which values I should loop over
perhaps something like this (pseudo)
foreach (task t in tasks)
{
total+= Datediff (dd,t-1.finishdate, t.startdate);
}
or is there a more direct way.