How to set up an auto-incrementing sequential ID (100, 101, 102) across form submissions?

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.

Please help how to set this up in KoboToolbox.

Thank you.

Welcome to the community, @sdhakad! This post discussed previously should help you solve your issue:

Correct. last-saved is the best approach to this.

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).