Domino Code Fragment

Code Name*
Convert @Today to Month Day, Year
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.138.141.202
Description*
Type*
Formula
Categories*
Date/Time Handling
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
D := @Today;
M := @Text(@Month(D));
N := "1" : "2" : "3" : "4" : "5" : "6" : "7" : "8" : "9" : "10" : "11" : "12";
Months := "January" : "February" : "March" : "April" : "May" : "June" : "July" : "August" : "September" : "October" : "November" : "December";
MonthName := @Replace(M; N; Months);
MonthName + " " + @Text(@Day(D)) + ", " + @Text(@Year(D))