Dataview List with "OR"

Is Type a single value or an array? It possible seems to be an array, but we can do this another way if it’s a single value.

With it being an array, you either need to repeat the condition, or do some array manipulations with any() and/or filter().

The easiest is possibly to do the following:

WHERE contains(Type, "Competition")
   OR contains(Type, "Grant")
2 Likes