Multiple Menu Options

I am using this logic to trigger if statements for actions that are triggered by a large number of variables. How do I do this if the list is a choose multiple list?

includes ([ "Variable 1", "Variable 2", "Variable 3", "Variable 4"],procedure)

Hi @Geoff_Kraabel

If I understand you correctly, you have variables 1 to 4 as arrays to choose multiple lists, and you need to check whether any of them contains the value of procedure. In that case, you can merge the lists and use includes as follows:

{=includes(merge(`Variable 1`, `Variable 2`, `Variable 3`, `Variable 4`),procedure)}

Please let me know if that helps.