daystr(
THEDATE
)

The daystr( function converts a date to the day of the week (for example Sunday).


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 the day of the week.

daystr(today()) ☞ Thursday
daystr(date("1/1/2014")) ☞ Wednesday
daystr(date("1/1/2015")) ☞ Thursday

Note: This function is equivalent to:

datepattern(thedate,"DayOfWeek")

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.