Expand my Community achievements bar.

Add and delete instance that requires a Grand total

Avatar

Level 4

I have a form that has an Add and Delete instance that requires a total - I don't have a problem with the first line totaling but I need a script that will add the add instance total for a grand total. I am a self-taught Adobe LiveCycle user so please bear with me.

Thanks in advance

1 Reply

Avatar

Level 10

If you use FormCalc as scripting language, you have a function called Sum which can do the totalling for the dynamic rows..

You can use the below line of code in the calculate event of the Total field.

     Sum(RepeatingFiledName[*]);

Thanks

Srini