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.
{@StartDate}
numbervar curmonth := Month(CurrentDate);
numbervar curyear := Year(CurrentDate);
numbervar getmonth;
numbervar getyear;
if curmonth = 1 then
(
getmonth := 12;
getyear := year - 2;
)
else
(
getmonth := curmonth - 1;
getyear := curyear - 1;
)
Date(getyear, getmonth, 1)