Group
3 posts tagged with "Group"
filter-group
function
The filter-group action filters a group. It belongs to the group category within the data area.
Action Syntax
filter-group $variable starts-with "text"
A variable name starting with $ followed by a value followed by A quoted text string
filter-group $variable starts-with $variable
A variable name starting with $ followed by a value followed by A variable name starting with $
filter-group $variable contains "text"
A variable name starting with $ followed by a value followed by A quoted text string
filter-group $variable contains $variable
A variable name starting with $ followed by a value followed by A variable name starting with $
Return Value
This function returns a
GRP_STRING
value that can be stored in a variable:
get-item-number
The get-item-number action gets specific item number from a group. It belongs to the group category within the data area.
Action Syntax
get-item-number 123 from $variable
A numeric value followed by a value followed by A variable name starting with $
get-item-number $variable from $variable
A variable name starting with $ followed by a value followed by A variable name starting with $
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$any = get-item-number 3 from $Ggroup
Action code: 3976446628
Version: 0.6.4
Last updated: 2025-06-13
sort-group
function
The sort-group action sorts a group. It belongs to the group category within the data area.
Action Syntax
sort-group $variable
A variable name starting with $
Return Value
This function returns a
GROUP
value that can be stored in a variable:
$result = sort-group
Valid sizes
tiny
small
medium
large
extra
Tags
reverse
sort the group in reverse
Examples
// Basic Usage
$group = sort-group $Ggroup
Action code: 2797832369
Version: 0.6.4-2
Last updated: 2025-06-13