CT_MDY

 MDY()
 Returns a date in the "Month DD, YY" format

 Syntax

     MDY([<dDate>]) --> cDate

 Argument

     <dDate>  Designates the date from which to create a string.  The
     default is the system date.

 Returns

     MDY() returns a character string in Month DD, YY, or "Month DD, YYYY"
     format.

 Description

     MDY() returns the date in a character string that contains the day, name
     of month, and year.  The Clipper SET CENTURY ON/OFF switch determines
     whether or not the year is displayed in 2 or 4 digits.

     If the function is called without a parameter, it automatically uses the
     current system date.

 Note

     .  The returned month name always depends on which Clipper
        nations module is in use.  A German or French version of
        Clipper returns the appropriate month names, despite its
        characteristically American display.

 Examples
? "Today :", DATE(), MDY()
dDate := CTOD("02/01/89")
 
? dDate, MDY( dDate )

See Also: DMY()

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.