MakeTable Autonumber?

L

Ladybird

How is an Autonumber (Incremental Number) assigned to a field when using a
Make Table query.
 
A

Allen Browne

Create the empty table ahead of time, and populate it with an Append query.

If this is a temp table that you are needing to repopulate regularly, you
can empty it out first with:
dbEngine(0)(0).Execute "DELETE FROM [Table1];", dbFailOnError
 
Top