I have a numerical field called ID in my KoboToolbox form. I want this field to automatically increment by 1 for each new form submission. For example, if the previous submission has ID 10, the next submission should automatically have ID 101.
It is worth being aware last-saved is per-form only, so if you use it for a similar purpose in a different form, you will generate a separate independent sequence of auto-incrementing numbers… The only other alternative would be to use an custom external app on the Android device that generates unique ids, and use ex: external app intents to pull it into your form(s).