Crystal Reports v 10
SQL 2000
I need to create a sub report with some comparative data that is not in any table in our database. We may create a custom table in the future, but that decision will be based on the "merits" of this report.
I plan on using simple formulas for all of the related fields, however I would like to use an array as the basis of my detail.
Here is my array formula:
I would like to place this formula in the deatil section to create the 3 lines of data. The report returns "True" when I run it. I don't know where I am going wrong.
Any help is appreciated.
SQL 2000
I need to create a sub report with some comparative data that is not in any table in our database. We may create a custom table in the future, but that decision will be based on the "merits" of this report.
I plan on using simple formulas for all of the related fields, however I would like to use an array as the basis of my detail.
Here is my array formula:
Code:
stringvar Array vNames:=
makearray ("High","Average","Low");
numberVar i ;
For i := 1 to uBound (vNames)
Do
(
vNames = vNames[i];
);
I would like to place this formula in the deatil section to create the 3 lines of data. The report returns "True" when I run it. I don't know where I am going wrong.
Any help is appreciated.