I am creating a parts database and each part will be assigned to a car and customer so I want to add each inventory part as a single item. So I may have 20 widgets i need to add an all are the same but I want them to go in as 20 widgets with a unique id.
I want to be able to add the basic data like name of product, description and unit price. Then i want to be able to have a box that i can put a number in and then append that number of records to the table.
I can easily create the table and fields, i am just not sure how to use the number in the box to create that many records. I am thinking maybe some kind of vba loop where it runs the loop to add records a many times as the number in the the box.