I have a variable that summarize what is displayed on each page of the report.
I would like this:
The problem is that "A - B" is not displayed on page 1 footer, but on page 2!Page 1
A
B
==>Variable in pagefooter = "A - B"
Page 2
C
D
==>Variable in pagefooter = "C - D"
To calculate the variable I set the AfterPrint event of the databand to
Code: Select all
variable=variable+" - "+data.letter;
Thank you for your help.