Filter for multiple values (OR)

Hi, is there a way to filter for multiple values? So the result should contain either value A Or value B Or value C.

Hi @marc
Yes, with Custom Expressions: https://www.metabase.com/learn/questions/custom-expressions
contains([Slug], "something") OR contains([Slug], "another")

Thank you! That worked.