Hi All,
I am currently working on a flow that writes data from 7 different forms (MSForms) into a SQL database.
I am currently receiving an error message: Violation of PRIMARY KEY constraint 'dbo.MY_DB'. Cannot insert duplicate key in object 'dbo.MY_DB'. The duplicate key value is (5).
This happens because I have multiple forms running in the same table in my SQL DB. Since each form has a separate form ID, this causes problems in the SQL DB afterwards. e.g. Id 3 from Form1 and Id 3 from Form7.
Now my question: Is there a way that the form ID's (primarykeys) are always incremented so all the id's of all forms are always unique?
Thanks in advance and best regards