Hi, can anyone help with my problem? I need to generate autosequence in a repeated subform with alpha chars ('a)', 'b)', etc.) instead of numeric. Thanks in advance!
Assuming you have a repeatable subform names "SF" which contains a text field named "SFindex" then you can use the following script in the indexChange event of "SF".
var aChars = "abcdefghijklmnopqrstuvwxyz".split("");
Assuming you have a repeatable subform names "SF" which contains a text field named "SFindex" then you can use the following script in the indexChange event of "SF".
var aChars = "abcdefghijklmnopqrstuvwxyz".split("");