September 24th, 2024
Now you can use regex patterns in table filter. Something like that:
a0|a5 it will find only A0 and A5 instances
a0|a5
or ^(?!.*PB6s).* it will find all instances except those that have PB6s substring.
^(?!.*PB6s).* it will find all instances except those that have PB6s substring.