Hi Nancy,
Though Quik Reports can print different date formats, it will not alter the format of the data nor the way it is stored. Thus, you will not be able to export the dates with only 2 digit years in the dbase format. The comma delimited format does export dates as YYMMDD, but this may not be appropiate for your system. Would you be able to edit the dbase format in Excel?
The only thing else you may be able to do is create a formula field that physically extracts only the last 2 digits from the year. This would mean the creation of a text formula with syntax similar to:
ToText(Year(date))[3 to 4] + ToText(Month(date)) + ToText(Day(date))
This being a solution would fully depend on how the target program would interpret this field, and if it could read this as a date.