TM1 Function for TI, While

Repeats a set of command until a condition is true

What is the While function?

While repeats a set of command until a condition is true.

Where can the While function be used?

TurboIntegrator

What is the syntax for While?

While(condition);​
  statement​;
End;

​Condition = A logical expression to check if the while loop should continue or not.​
Statement = run this statement if the condition is true

A demonstration on how to use While

Use a While loop to go through all the elements in the Product Scorecard dimension.