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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top