Formmenu where some options activate formtext and some not

Hi :slight_smile:

I have made a drop down menu with options A, B and C.

Then I'm trying get an additional field for formtext to appear if either B or C has been chosen in the dropdown menu, but not A. What have I done wrong?

{formmenu: A; B; C; name=Options}
{if: Options=="B"; "C"}{formtext: name=Explanation}{endif}

Any help would be greatly appreciated :slight_smile:

Hi @Robert_Shaw - great question. You actually got pretty close to the solution :slight_smile:

Here's how to do it:

{formmenu: A; B; C; name=Options}
{if: Options=="B" OR Options=="C"}{formtext: name=Explanation}{endif}

Fantastic @Cedric_Debono_Blaze . Thank you very much! Have a great weekend :slight_smile: