Script
The following script extracts a set of values from a list of positive numbers, to create a sublist.
...
The script does not handle zeros or negative numbers.
Using the Script as a Macro
Save this script into a macro named subList
.
...
In an expression, use the following syntax to run the subList macro in order to return a sub-list extracted from the supplied list.
Syntax
Code Block |
---|
subList([value1, value2, value3,...], <startPosition>, <endPosition>) |
...
Argument | Type |
---|---|
valuen | A value of any type |
startPosition | Integer representing where to start extracting values. |
endPosition | Integer representing where to stop extracting values. |
Example
Code Block |
---|
subList([1,2,3,4,5,6,7,8,9,10],6,9) |
...