Aug 19, 2005 #1 Nilo MIS Jan 30, 2002 21 US Is there a way to create an AutoNumber field from a Make Table query?
Aug 19, 2005 3 #2 PHV MIS Nov 8, 2002 53,708 FR When the make table query is finished execute the following one: ALTER TABLE myNewTable ADD COLUMN myID COUNTER(1,1); Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
When the make table query is finished execute the following one: ALTER TABLE myNewTable ADD COLUMN myID COUNTER(1,1); Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Aug 19, 2005 Thread starter #3 Nilo MIS Jan 30, 2002 21 US Perfect! works like a charm Upvote 0 Downvote