The following funtion uses CMONTH( ), DAY( ), and YEAR( ) to return the month, day, and year in a character string—like the MDY( ) function, but with no leading zero in the day and always with the full year.

function mdcy( dArg )

   return cmonth( dArg ) + " " + day( dArg ) + ", " + year( dArg )