for loop syntax with two tables?
it is possible to write something like this and work?
var fields = ["Dropdown14.0","Dropdown14.1","Dropdown14.2"];
var fields1 = ["Text1","Text2","Text3"];
for (var i in fields && i1 in fields1)
{
var f = this.getField(fields);
var f1 = this.getField(fields1[i1]);
if (f.valueAsString!=1==false && f1.valueAsString!=2==false) total++;
}
i now the syntax "for in" check only one table at the time... it is possible to check 2? because now this not work... ![]()
