Hi Kipp,
We will look into why this broke, sorry for the inconvenience. In the mean time, it is better to explicitly declare a variable and use, such as:
int irow;
loop(irow, 1, wks.nrows)
{
}
// or use for loop
for(int irow=1; irow<=wks.nrows; irow++)
{
}
Easwar
OriginLab