I am trying to count the number of dropdowns the user selected "N/A" in a repeating subform. I want the total to appear in a numericfield or textfield. Here's my form layout and my script that unfortunitly does not work. I placed it in the ready:layout event so the total updates as the number of N/A's changes.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
I would put the code in the calculate event of the text field, something like;
var result = 0;
var instanceCount = _Subform2.count;
var instances = Form1.resolveNodes("Subform2[*]");
for (var i = 0; i < instanceCount; i++)
{
if (instances.item(i).Table1.Row2.Score.rawValue == "N/A") {
result++;
}
}
this.rawValue = result;
The reference to "_Subform2.count" will ensure the code is executed every time an instance is added or removed.
Regards
Bruce
Views
Replies
Total Likes
Hi,
I would put the code in the calculate event of the text field, something like;
var result = 0;
var instanceCount = _Subform2.count;
var instances = Form1.resolveNodes("Subform2[*]");
for (var i = 0; i < instanceCount; i++)
{
if (instances.item(i).Table1.Row2.Score.rawValue == "N/A") {
result++;
}
}
this.rawValue = result;
The reference to "_Subform2.count" will ensure the code is executed every time an instance is added or removed.
Regards
Bruce
Views
Replies
Total Likes
Thank you so very much!
Works great!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies