Optimize "for each row"
Hello,
I have this script on the Big Class table.
On large tables, it takes too much time.
Is there some other quicker way?
AgesList = {13,14};
for each row(dt, if(Contains(AgesList ,dt:Name("Age"))>0,dt:Name("height")=-1));
Thanks.