Has anyone seen this pop up box come up while trying to delete rows? I pasted the code that I'm using below.
On several of my scripts, I've seen this pop up box show up - there's no option except "Ok", and once you click it, the script continues as normal. It's part of an iterative loop, and strangely it doesn't happen on every iteration.
At first I thought it happened because the row selection in the code was null, but when I replaced the "checkweek<<delete rows" line with
if (nrows(checkweek<<get selected rows)>0, checkweek<<delete rows(),wait(0));
I started getting errors from JMP saying it couldn't resolve the next line.
FBListWeek=:Cause<<get values;
I've even added a checkweek<<data table window to try and make sure JMP knows this is the table I want to work with. The odd thing is, when I click on checkweek to make it active, and then copy just the single line of code (FBListweek=:Cause<<get values;) into a separate script window, it has no problems (not to mention the fact that when I didn't have the if statement, it worked fine minus having to click ok).
I'm running JMP 9 on a windows 7 Enterprise machine that has 32GB of RAM, and there's nothing remarkable with the table except for the fact that it's very large (over 1 million rows).
Thanks in advance,
Eugene.
Code:
for(i=1,i<=nvector,i++,
current data table(week);
paretoweek = Pareto Plot( Cause( :FB ), Per Unit Rates( 1 ), Where( :PKG == eval(pkgnames) & :Sort_Config == eval(sortconfignames) ) );
rparetoweek=paretoweek<<report;
rparetoweek[tablebox(1)]<<make data table("checkweek");
checkweek=data table("checkweek");
checkweek<<Select where(rate<0.001);
checkweek<<delete rows;
checkweek<<select where(cause=="Pooled Total");
checkweek<<delete rows;
FBListWeek=:Cause<<get values;