Subject Re: Spelled out date on form
From otto <roseundotto@aol.com>
Date Fri, 24 Apr 2015 03:47:33 -0400
Newsgroups dbase.getting-started

You could try the non documented function: dtoh() for example:
? dtoh(date())
Results in :
vendredi 24 avril 2015
(on my french system)

Otto



Randy Waldman Wrote:

> Does anyone know how to spell out a date on a report?  For example:  April 23, 2015
>
> I guess that I could use a 12-sided case statement:
>    DO CASE
>      case month(date() = '01'
>          mymonth = 'January'
> etc.
>
> Thanks, Randy