The data stored in notes reflects the dropdown selectors. So Low is 00 - Low.
How do I filter these? I’d been assuming they would respond as a number. If that’s not true, then what do we use to approximate a “greater than”?
In terms of multiple filter rules for the same field, this seems to be working as intended.
See the attached as an example.
The script includes two filters:
status gt 2
status lt 8
The collection includes one note for each of the default status values.
In the result file, status values of 2 - 7 are included. Status values of 0, 1, 8 & 9 are excluded.
You may wonder why the note with status value of 2 is being included. That’s because the full status value is “2 - Approved” which is indeed greater than “2” (since the two values are simply compared alphanumerically).
So, to get the desired results, you might want to change the first filter to ge 3.