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.
data _null_;
format month1 ddmmyy10.;
month1 = intnx('MONTH',intnx('MONTH',today(),-1),+1);
weeks_since = intck('WEEK',month1,today());
put month1=;
put weeks_since=;
run;