Rather than changing the table design, you can put an invisible text box [YourDate] on your report bound to your date and a visible text box with
Control Source = DateValue(Str(Mid([YourDate],7,2)) & "/" & Str(Mid([YourDate],5,2)) & "/" & Str(Left([YourDate],4)))
and format = Long Date.
HTH...