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.
LOOP Date# = DATE(1,1,2010) to DATE(12,31,2010)
CASE (Date# % 7)
OF 0 ! Sunday
Sundays# += 1
OF 6 ! Saturday
Saturdays# += 1
ELSE
IF <PublicHoliday> ! use your own method to find out if it is a public holiday
PublicHolidays# += 1
END
END
END