HELP!

While

A while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement.

In XpertScript terms, you can accomplish this by creating a basic question -> numeric question and assigning it to an integer of 1 in your XpertScript code. You use this as your iterator. Then you can build your while loop by indicating your iterator is less than the point you wish to iterate to, for example 5 (which it is).

You then have your code block. Below your code block you need to reassign your iterator, by adding the amount you wish to increment by, such as plus 1. This way, when your iterator hits 5, it will break out of the loop.

Please see the example below for more information.

If you do not reassign your iterator at the end of your code as indicated above you can put yourself into an infinite while loop. Be careful.

On This Page