Hey guys,
I am currently writing a program to save stuff entered in a form in Excel into a database in Access. I am trying to increment a primary key field within Access by "1" whenever I add data from the fields in my Excel form.
Because I have declared this field as a PRIMARY KEY NOT NULL field, it doesn't allow me add another row of data unless the primary key field has been declared. I do not want the user to enter the PK data, as that would be silly.
How would I go about doing DDL from Excel into Access like say MAX(CustomerID)
to find the maximum ID wihtin the Access table then adding MAX(CustomerID) + 1
into the ID field using RS.FIELD("CustomerID") = MAX(CustomerID) + 1
.
I would be grateful for any help in this matter. Thanks in advance.