Domino Code Fragment

Code Name*
Format a date fr display
Date*
04/29/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.52.14.130.13
Description*
And this formula which shows a date as the format 1995-01-15 - Monday, January 15
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:



@Text(@Year(Date)) + "-" + @Right("0" + @Text(@Month(Date)); 2) + "-" + @Right("0"
+ @Text(@Day(Date)); 2) + " - " + @Replace(@Text(@Weekday(Date)); "1" : "2" : "3" : "4" :
 "5" : "6" : "7"; "Sunday" : "Monday" : "Tuesday" : "Wednesday" : "Thursday" : "Friday" :
 "Saturday") + ", " + @Replace(@Text(@Month(Date)); "1" : "2" : "3" : "4" : "5" : "6" :
 "7" : "8" : "9" : "10" : "11" : "12"; "January" : "February" : "March" : "April" :
"May" : "June" : "July" : "August" : "September" : "October" : "November" : "December")
 + " " + @Text(@Day(Date))