Multiple conditions using and/or in if statement

Is it possible to give multiple conditions using and and or in a conditional branch using an if statement?

I am a doctor in Japan and am considering using this in a clinic.

Hi @Naritatsu_Saito,

It is possible. Here is a small example:

{if: (1 == 2 or 2 == 2) and 3 == 3}"yes"{else}"no"{endif}

You can find more information in our documentation: Logical Operators

Thank, Great !!