David,
Before running the report
SET DATE DMY
SET CENTURY ON
SET MARK TO '-'
mmm id that the three-letter month name?
SET DATE LONG will show dates the way you've set it up in the Control
Panel's Regional date settings.
Programmatically
transform(day(date)) +' '+left(cmonth(date),3)+' '+transform(year(date))
-Anders