I have a query file that produces a column called conversion_date. The values for this column are
2000-12-06:00:00:00.00 for the reporting purposes I would like to have it displayed as DEC 6, 2000.
How is this done? I have been going up and down with all the date functions and haven't found the right one.
I had one suggestion to do something like this:
totext(date(left({Query.CONVERSION_DATE},4),
mid((Query.CONVERSION_DATE},6,2),
mid((Query.CONVERSION_DATE},9,2),"MMM dd, yyyy"
But I was getting parenthesis errors and when I didn't get that I got this function has too many arguements.
I appreciate the help.
2000-12-06:00:00:00.00 for the reporting purposes I would like to have it displayed as DEC 6, 2000.
How is this done? I have been going up and down with all the date functions and haven't found the right one.
I had one suggestion to do something like this:
totext(date(left({Query.CONVERSION_DATE},4),
mid((Query.CONVERSION_DATE},6,2),
mid((Query.CONVERSION_DATE},9,2),"MMM dd, yyyy"
But I was getting parenthesis errors and when I didn't get that I got this function has too many arguements.
I appreciate the help.