As Wolfgang says if you want a date you need to have something the access
will see as a date. But if you really want to use YYMMDD you would need to
convert this to a date - something like
SELECT YourTable.Datefield, YourTable.InputField,
CDate(Mid([InputField],5,2) & "/" & Mid([InputField],3,2) & "/" &
Mid([InputField],1,2)) AS [Date]
FROM YourTable;
Of course this could be done AfterUpdate on your input control on the form
Private Sub InputField_AfterUpdate
Me.Datefield = CDate(Mid([InputField], 5, 2) & "/" & Mid([InputField], 3, 2)
& "/" & Mid([InputField], 1, 2))
End Sub
You may be better using Left, Mid, Right - I have just used Mid to show you
how it works
But this seems a lot of work for something that access will do anyway (there
are quite a few date formats that access will produce)
Good luck