Hi,
I am trying to generate a unique number for each notification that is created and saved from a form.
I want the number to start with a certain value (e.g. 1000) and by clicking on the save button the number should always be incremented by 1. The last saved number then should always be the new starting number when a new form is created.
I set the following values and variable, but then the start number is always 1000. How can I manage to have the last incremented number that was generated after clicking the save button as a new start number?
App:
OnStart = Set(ID; 1000)???
Field value:
Default = ID???
Save button:
OnSelect = Set(ID; ID+1)