Is there a way to add multiple conditions to depends on?

Here is what I am trying to accomplish:

I have a Select field with a few different options: Ex. (A, B, C, D)

I have two fields that I would like to appear when either B or D is selected.

How can I go about doing this?

@dsslrbrandon you can use

eval: in_list(["A", "b", "c"], doc.my_field)
1 Like

Perfect! Thank you.