REETA1967
1st April 2003, 17:48
hello,
i have to print a field on a report which is depth of 5
i have created this report by taking 5 variables in the program
script and then defined 5 variables in the report layout
is there any other way to do the same thing

thanx in advance

bye

lbencic
1st April 2003, 18:50
You can use the element in the print expression within parenthasis. So, if you are printing the variable array.var with 5 elements, on the report you can specify those fields in the print expression as:
array.var(1)
array.var(2) etc.

You can also use a variable for the element:

array.var(element.no)