Search help
Searches in Struct PIM can be highly customized by using specific syntax.
Operators
A number of different search operators can be used to make complex queries.
struct
all items where the value starts with struct
*struct
all items where the value contains struct
"struct"
all items where the value equals exactly struct
!struct
all items where the value does not start with stuct
!*struct
all items where the value does not contain struct
!"struct"
all items where the value is not equal to struct
""
all items where this value is empty
!""
all items where this value is not empty
*<
all items where the value contains the character <
Numeric fields
>5
all items where the value is larger than 5
<5
all items where the value is less than 5
>5&&<10
all items where the value is larger than 5 and less than 10
Date/date time fields
For date or datetime fields you can search for exact dates and times or distances from the current date.
To swap between this you can toggle between 'Date search' and 'Date offset search' by clicking the icon to the left on the date column header.
The syntax for searching for date offsets is:
>-30d
all items where the date is larger than now - 30 days
<30d
all items where the date is smaller than now + 30 days
Multiple searches in same field
The system supports following boolean operators for making multiple queries in the same field
[query1]&&[query2]
all items where the value is included in both query1 and query2
[query1]||[query2]
all items where the value is included either in query1 or query2
Last updated