vote up 1 vote down star

I have two tables with date fields. Each table displays the date in Short Date format (MM/DD/YYYY).

I wrote a Union Query to combine these tables, but the Union query displays the date in General Date (long) format (MM/DD/YYYY HH:MM:SS). I would be grateful for a solution to getting dates out of the Union Query in Short Date format.

flag
I used an Update Query to format the dates on the final table, easier than formatting Union Query output. Thank you CodeSlave and le dorfier. Code below. --mike UPDATE tblMergedAll SET Last_Modified = Format([Last_Modified],"d, m yyyy"), CreationDate = Format([CreationDate],"d, m yyyy"); – Mike Feb 9 at 3:13

3 Answers

vote up 6 vote down

do a select on the union and format the date column at the end:

select format(foo, "short date")
from (
    blah
union
    blah
)
link|flag
This will work only if you've got Access set to use SQL92 mode. For regular Jet SQL, you'd need the [SQL statement]. As TableName format for the derived table (not parens). – David W. Fenton Feb 9 at 1:46
BTW, with the appropriate syntax, your solution does work. – David W. Fenton Feb 9 at 1:50
vote up 2 vote down

There's a nice built in Jet function you can use:

Select Format(myDate, 'mm/dd/yyyy') From Table

Hope this helps!

link|flag
vote up 1 vote down

If you are using a querydef, you can right-click on the column in Design Mode and you will find a Format property.

link|flag
The Access does not support editing UNION queries except in SQL view. You could accomplish what you say if you create another query that uses the saved UNION querydef as the source "table". – David W. Fenton Feb 9 at 1:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.