Which saved search filter would i need if i want ...
# general
a
Which saved search filter would i need if i want to display the items with name ending with -10
b
learn how regular expressions work and use a formula
you will probably be using REGEXP_INSTR in combination with the end of line anchor (
$
)
you can also use the like condition if you are more familiar with sql
a
Thanks 👍