IF/Else Condition for 2 of 3 options selected from a dropdown menu

tb

Hello, please see attached screenshot. I have a dropdown menu with 3 options: Hospital, SNF, and Community provider. I would like DC Date to appear if only hospital or SNF is selected. I can't seem to figure out how to include both options. Any help is greatly appreciated!

Hello Sarah,

You can do this by using or in your if condition, like this:

{formmenu: A; default=B; C; name=menu}

{if: menu = "A" or menu = "B"}
{time: MMMM Do YYYY}
{endif}

Thank you so much!