TO
Applies to PredictiveInsight only.
Syntax
begin TO end begin...end
Parameters
begin
The beginning number in the range to create. This can be an integer constant value or an expression evaluating to an integer constant.
end
The end number in the range to create. This can be an integer constant value or an expression evaluating to an integer constant.
Description
TO creates a single column containing the integer values beginning with begin and ending with end. This macro function is used to define the time variable in recursive functions (see the INIT macro function).
*
The TO operator can be abbreviated with three periods (...).
Examples
TEMP = 1 TO 10 or TEMP = 1...10
Creates a new column named TEMP containing the values 1-10.
Creates a new column named TEMP containing the values 0 to 10.
Related Functions