completedatestr(
THEDATE
)

The completedatestr( function converts a date to text, spelling out the month and including the day of the week.


Parameters

This function has one parameter:

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


Description

This function converts a date to text, spelling out the month and including the day of the week.

completedatestr(today()) ☞ Thursday, September 5th, 2013
completedatestr(date("last tuesday")) ☞ Tuesday, August 27th, 2013
completedatestr(date("friday")) ☞ Friday, September 6th, 2013

Note: This function is equivalent to:

datepattern(thedate,"DayOfWeek, Month ddnth, YYYY")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.