Ever get this error on a create table or insert query? The work around is quite simple. Cast the autonumber as an integer. In query design view change your field definition for one of your autonumbers to read:
XID: CInt([ID])
Or in SQL View:
CInt([ID]) AS XID
(Ran into this error message again this morning and it reminded me I should share the workaround.)
Comments