Domino Code Fragment

Code Name*
How to Modify Date Format to Textual Representation
Date*
04/29/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.18.217.144.32
Description*
Formats a date from 12/27/97 to December 27, 1997
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Note: The data type for a field that uses this formula must be set to Text or Rich Text. If the data type of the field is set to Time (the usual data type for a date field), the following error message will display when the formula is calculated: Incorrect Data Type for Operator or @Function: Time/Date Expected
Files/Graphics attachments (if applicable): Code:
There is not an @Function that displays a date in the specified format,however you can use
the following formula to achieve this format:

@Select(@Month(@Today);"January";"February";"March";"April";"May";"June";"July";"August";"September";"October";"November";"December")+"
"+@Text(@Day(@Today))+", "+@Text(@Year(@Today))