Miro posted in sv.clarion.clarion11 on Aug 25 2021 that the Page Footer totals work when TALLY(),PAGE is used. I added a test and confirmed that SUM,CNT,AVE work in the PAGE Footer in 11.1. My prior code with RESET(Break) in the Page Footer would be odd because it would not reset on page. I got that code from the Help.
This is my Page Footer with TALLY and “PAGE” causes it to Reset each page:
FOOTER1 FOOTER,AT(1000,9688,6500,1000),USE(?FOOTER1)
STRING(@n5),AT(156,167),CNT,USE(FooterBreak2_Count),RIGHT ,Tally(Detail) , PAGE
STRING('Detail CNT'),AT(729,167),USE(?FooterSTRING1:2)
STRING('SUM Footer Total:'),AT(1583,167),USE(?FooterSTRING1:3)
STRING(@N$11.2),AT(2885,167),SUM,USE(Pre:F1,, ?Pre:F1:2),RIGHT ,Tally(Detail) , PAGE
STRING(@N9.2),AT(3917,167),AVE, USE(Pre:F1,, ?Pre:F1_Ave_FooterPage),RIGHT ,Tally(Detail) , PAGE
STRING(@N9.2),AT(4635,167),MIN, USE(Pre:F1,, ?Pre:F1_Min_FooterPage),RIGHT ,Tally(Detail) , PAGE
STRING(@N9.2),AT(5396,167),MAX, USE(Pre:F1,, ?Pre:F1_Max_FooterPage),RIGHT ,Tally(Detail) , PAGE
STRING('AVE'),AT(4396,427),USE(?FooterStringAVE)
STRING('MIN'),AT(5146,427),USE(?FooterStringMIN)
STRING('MAX'),AT(5865,427),USE(?FooterStringMAX)