UnleashThePain
Programmer
Hi I am having problems with running a summary on a report. The summary keeps adding the total per report upon each other, while I want the summary per page.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// Clear the total
WhilePrintingRecords;
NumberVar PageTot :=0;
// Accumulate
WhilePrintingRecords;
NumberVar PageTot := PageTot + 1;
// Show
WhilePrintingRecords;
NumberVar PageTot;