Hi! I've got a multi-select form menu set up within a Snippit, where a team member can select any number of pre-populated action items that may be needed from an email recipient. I'm trying to configure the Snippit so that the team member can then check the box for all action items are needed, and "if" statements will then insert a corresponding Snippit with instructions on how to complete the action item. For example:
Action Items Form Menu Multi-Select
- Submit Intake Survey
- Schedule Kick Off Call
- Complete Website Review
{If: Action Items Form Menu Multi-Select = "Submit Intake Survey"} [Import Submit Intake Survey instructions Snippit]{endif}
{If: Action Items Form Menu Multi-Select = "Schedule Kick Off Call"} [Import Submit Schedule Kick Off Call instructions Snippit]{endif}
{If: Action Items Form Menu Multi-Select = "Complete Website Review"} [Import Complete Website Review instructions Snippit]{endif}
However, I'm not sure how to get the If statements to read a multi-select form, as the If statement tool seems dependent on an exact match, not a multi-select. So if the form were a single-select dropdown, instead of a multi-select, I could get it to work; but I'm not sure how to accommodate multiple selections.
Any ideas?