I can easily find issues with a specific comment which might end up as 6 out of 30 items.
But I want to exclude each item containing a specific text string to get the remaining items.
(I'm NOT admin in our system, just a regular user)
Can do:
comment ~ "Fault Slip Through"
= 6 out of 30
No use:
comment !~ "Fault Slip Through"
= 30 out of 30
Need: filter out "lack of specific comment" = 24 out of 30
This way of filtering actual do work on "summary" since it also supports "in" and "not in". Is this due to comments are multiple sub items under each item?