FORMULA LANGUAGE


Examples: @DoWhile
This agent displays the elements of the Categories field one at a time.

@If(@Elements(Categories) = 0; @Return(0); "");
n := 1;
@DoWhile(
@Prompt([OK]; "Category " + @Text(n); Categories[n]);
n := n + 1;
n <= @Elements(Categories)

)

See Also