replied on November 14, 2019
Nicki,
I do not know of a way to automatically index submitted forms starting with single digits. I use a reference to an external SQL table on most of the HR forms that we use that utilizes a view that returned the last record index of the tracking table adding 1 integer knowing that the insert statement will give that record the presented index.
SELECT MAX([cf_index])+1 as NewIndex FROM [dbo].[hr_changeFormTracking]
I have also used the form Instance ID which is a unique number within the entire forms system for that individual process and is available as a default value. On a couple of occasions where I needed referenceable form numbers with no corresponding data table.