longdatestr(
THEDATE
)

The longdatestr( function converts a date to text by spelling out the month.


Parameters

This function has one parameter:

thedate – a date to convert (usually created with the today() or date( functions).


Description

Convert a date to text by spelling out the month.

longdatestr(today()) ☞ September 5th, 2013
longdatestr(date("last tuesday")) ☞ August 27th, 2013
longdatestr(date("friday")) ☞ September 6th, 2013

Note: This function is equivalent to:

datepattern(thedate,"Month ddnth, YYYY")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.