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.
Global DateVar tdy := CurrentDate ;
Local Datevar first := Date(Year(tdy), Month(tdy),1) ;
Local NumberVar since ;
since := ( DateDiff('d',first,tdy)
- DateDiff('ww',first,tdy,crsaturday)
- DateDiff('ww',first,tdy,crSunDay) ) +1;
Global DateVar tdy ;
Local Datevar last := DateSerial(Year(tdy), Month(tdy)+1,1-1) ;
Local NumberVar togo ;
togo := ( DateDiff('d',tdy,last)
- DateDiff('ww',tdy,last,crsaturday)
- DateDiff('ww',tdy,last,crSunDay) ) ;