Click here to Skip to main content
15,903,856 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
pls post how to reset the auto number field in ms access 2010.
Posted

It's very simple:

Step1: Go to Create in Menu item.
Step2:Select Query Design.
Step3:Select the table in upcoming window and close it.
step4:Go to View and select the SQL view
Step5:Past the following code

Alter table invoice alter column InvoiceId Autoincrement(1,1)

invoice is a table name.
InvoiceId is a Auto number Filed.
(1,1) is a Starting number. if U want auto number start with 100 means U put (100,1).


Step6: Finally Run the Query.
 
Share this answer
 
Comments
Member 14932703 21-Oct-20 3:23am    
it work for me thank you :)
Hello RaviRethi,

Please read this article: http://support.microsoft.com/kb/812718/en-us[^]

JAFC
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900