I am using this, if (BirtDateTime.week(dataSetRow["date12"]) ==6) (6 corresponds to week 6)
is there a way I can (I have tried many combinations) use a variable for the dataSetRow?
I have also tried utilizing an array, but the values do not reflect the current row when I use it in the detail section of the report.
if (!DataSet.fetch())
return (false);
.
.
row["date51"] = DataSet.getTimestamp("date51");
row["date52"] = DataSet.getTimestamp("date52");
row["laststartdate"] = DataSet.getTimestamp("laststartdate");
myArray[1] = row["date1"];
myArray[2] = row["date2"];
myArray[3] = row["date3"];
Is there a means to accomplish this with a crosstab?
I'd like columns reflecting weeks or months, rows reflecting the equipment and the scheduled tasks under the appropriate column.
TIA






MultiQuote







