HELP!

For

A for loop is a control flow statement for specifying iteration, which allows code to be executed repeatedly.

With XpertScript we can do this by first creating a basic question -> numeric question. We don't have to add this to the tree.

We then assign this object to the 'For' - please see the example below. We follow this up by specifying how many times we want to increment by.

So for example:

For numericCounter (the numeric object we just created) = 1 to 5 (how many time's we wish to loop over our code block) Do (Insert your code here)

You can also use a local variable "Var" for looping.

On This Page