Are nested loops possible using JSL?
Is there a way to script a nested loop statement using JSL? I'm running into errors when I try. I am writing a script that transforms a dataset using indirect lognormal correction for change of support and I think I need a nested WHILE statement to make it work.
Although I realize the syntax is not entirely correct, the following illustration conveys what I am trying to do:
i=1;
j=1;
n=NRow() // wit...