Nested WHILE loops?
Posted: Mon Jul 21, 2014 5:08 pm
Hello
I have a quick question; is it possible to use nested WHILE loops in Turbo Integrator?
This post implies it is... http://www.tm1forum.com/viewtopic.php?f=3&t=348#p16842
... but when I try to run this process as a test:
Prolog:
I get the attached output...
I have a quick question; is it possible to use nested WHILE loops in Turbo Integrator?
This post implies it is... http://www.tm1forum.com/viewtopic.php?f=3&t=348#p16842
... but when I try to run this process as a test:
Prolog:
Code: Select all
#****Begin: Generated Statements***
#****End: Generated Statements****
x = 1;
y = 1;
WHILE ( x <= 12);
WHILE ( y <= 12);
ASCIIOutput('D:\TM1\Files\TimesTables.csv' , NumberToString( x) | ' times by ' | NumberToString( y) | ' is ' | NumberToString( x * y) );
y = y + 1;
END;
x = x + 1;
END;