''''''''''''''''''''''''''''''''''''''''''''''''''''''''' 'Function: GetDateFormat ' 'Arguments: Date you want to format ' 'Description: Formats the date to the following format' ' Month, Date Year ' 'LastModified: 8/18/99 ' 'Developer: Joey Holt ' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Function GetDateFormat(dat) 'Declare local variables dim strLastDate, arrLastDate strLastDate = dat 'Format date strLastDate = FORMATDATETIME(strLastDate, vbLongDate) arrLastDate = Split(strLastDate, ",") strLastDate = arrLastDate(1) & "," & arrLastDate(2) 'Return GetDateFormat = strLastDate End Function Dim td td = "