Topic: DATE

Hello to all

Is there anyone can give an idea to put the  date field like this    "Made this _____ day of _____________, 20 ____"   to the report?

Thanks!

Re: DATE

Hello.


Example for Memo component:

['Made this '+ FormatDateTime('d', StrToDate(<Report."tablename.datefield">)) + ' day of ' +FormatDateTime('mmmm', StrToDate(<Report."tablename.datefield">))+ ',' + FormatDateTime('yyyy', StrToDate(<Report."tablename.datefield">))]
Dmitry.

Re: DATE

Thank You so Much!