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 stringvar v_day;
local stringvar v_result;
v_day :=
select day({@date})
case 1,21,31: "st"
case 2,22: "nd"
case 3,23: "rd"
case 4 to 20,24 to 30: "th";
v_result := totext(day({DateField}),"#",0) + v_day + " day of " + monthname(month({DateField})) + ", " + totext(year({DateField}),"#",0);
v_result
Function (dateVar v1)
local stringvar v_day;
local stringvar v_result;
v_day :=
select day(v1)
case 1,21,31: "st"
case 2,22: "nd"
case 3,23: "rd"
case 4 to 20,24 to 30: "th";
v_result := totext(day(v1),"#",0) + v_day + " day of " + monthname(month(v1)) + ", " + totext(year(v1),"#",0);
v_result