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.
select *, cast(0 as B) as RunningTotal from table into cursor curRunningTotal readwrite
lnRunningTotal = 0
scan
lnRunningTotal = lnRunningTotal + field
Replace RunningTotal with m.lnRunningTotal in curRunningTotal
endcan
if recno()%6 = 0
* do what you want, if you're at records 6,12,18,..
endif
counter6=0 && init to 0
DO WHILE !EOF()
...
counter6 = counter6+1
if counter6=6
counter6=0 && reset to 0
* do what you want, if you're at records 6,12,18,..
endif
ENDDO
SET TALK OFF
CALCULATE SUM(field) TO thisform.textbox1.value
Select Sum(field) From Table Into Array laSum
thisform.textbox1.value=laSum
CALCULATE SUM(field) TO thisform.textbox1.value FOR MOD(RECNO(),6)=0