M
mcin7535
How can I format a number field in a table that has the data formated
like yyyymmdd into a date field using a query?
like yyyymmdd into a date field using a query?
You can't format it. But you can build it:How can I format a number field in a table that has the data formated
like yyyymmdd into a date field using a query?
Stefan Hoffmann said:hi,
You can't format it. But you can build it:How can I format a number field in a table that has the data formated
like yyyymmdd into a date field using a query?
DateSerial(Mid([Field], 1, 4), Mid([Field], 5, 2), Mid([Field], 7,2))
How can I format a number field in a table that has the data formated
like yyyymmdd into a date field using a query?