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.
StringVar YY := (Left(ToText(YourDate,0,""),4));
StringVar MM := (Mid(ToText(YourDate,0,""),5,2));
StringVar DD := (Right(ToText(YourDate,0,""),2));
Date(Val(YY),Val(MM),Val(DD));