From: Harry Ho on
I have the following problem

I have a table that is made up of an indexed list. Based on the index
of the item, I run a function to set some variables for later use.

I had set the report initially to display the values of the variables
in a self made grid outside of the table. This works quite nicely.

I had to add a group to the table, so I then also had to move the
custom grid into the table. This is where I am getting the problem.
Even though I can see that the variables are being set as the detail
lines of the table are processed, once the table is printed, the
variables printing below the table is not initialised at this point.

I have reset the variables when the first line is processed, but that
does not work either. The second group prints the variables as it was
set during the first group, the third group prints the variables as it
was set during the second group etc.

It looks like the lines below the table is generated prior to the
detail lines are processed :(

Hennie