Two condition for customize form

Dear All,

I am looking for a way to apply two conditions in the “Depends On” value within Customize Form?

(( I want to only show the field Task_Date if only the two conditions are there:

eval:doc.type==“Task”
eval:doc.type==“Activity”

Please give me the syntax to do it?

Thanks.

eval:doc.type==“Task” || doc.type==“Activity”
|| stands for OR operator.

1 Like

Thank you so much