Welcome to Catalog Tips
Search more than 200 articles to learn more about creating and automating your product catalogs
Tip: Start typing in the input box for immediate search results.
GROUPISFIRST – Identify first n records
Overview
This Custom Field returns TRUE for a record in the first n positions of a group of records.
Syntax
GROUPISFIRST(GroupPath,SortField,Positions)
Element | Description |
---|---|
GroupPath | Group path delimited by colons. Limits the scope to the specified grouping. |
SortField | Field used to sort records by within the group. |
Positions | Optional field. The number of positions to be recorded. Defaults to 1. |
Examples
GROUPISFIRST(Parent Category:Child Category,Colour,2)
Colour | GROUPISFIRST |
Red | TRUE |
Green | TRUE |
Red | FALSE |
Yellow | FALSE |
GROUPISFIRST(Parent Category:Child Category,Colour,3)
Colour | GROUPISFIRST |
Red | TRUE |
Green | TRUE |
Red | TRUE |
Yellow | FALSE |