I need to output the date field that is stored in the format, dd/mm/yyyy, it needs to be output in the following format yyyymmdd without any punctuation. I have tried to use the format function with the following command,
Print #1, Format(rs("ProducedDate"), yyyymmdd);
but the output remains in the original storage format, any help would be much appreciated.
Print #1, Format(rs("ProducedDate"), yyyymmdd);
but the output remains in the original storage format, any help would be much appreciated.