Hi,If all you need is to simply number a set of subforms, one way is to add a script to the initialize event of a field in the subform like: $ = Concat("Item #",$.parent.index + 1)So what you are doing is, finding the index of the subform (remember indexes are zero-based) and adding 1 ...