Crystal Reports  

While Loops (Basic Syntax)

The While loop is similar to the Do While ... Loop except that it does not support an Exit statement. It uses While ... Wend instead of Do While ... Loop as its syntax.

While condition
   statements
Wend

See Also

Do Loops | Preventing Infinite Loops