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.
Local DateVar dt := PrintDate ; //Whatever Date you need would go here
Local DateVar first := dt-Day(dt)+1 ;
Local NumberVar daynum := DayOfWeek(dt) ;
Local Numbervar howmany := DateDiff('ww',first,dt,daynum) ;
howmany := ( if DayofWeek(first)=daynum then howmany +1 else howmany ) ;
"This is the " & ToText(howmany,0)
& (
Select howmany
case 1 : "st "
case 2 : "nd "
case 3 : "rd "
default : "th "
)
& WeekdayName (daynum)
& " in "
& ToText(dt,"MMMM")