Pre selecting a pick list options selected

Is there a way to have different preset menu options based on a variable.
From a pick list
Ie: Pre checked options: "1", "2", "3"
If variable A = X
If variable A = Y then pre select "1", "3", "4"

Hi @Geoff_Kraabel,

I think this is what you are looking for :slight_smile:

{formmenu: X; Y; name=variable}
{if: variable = "X"}
{run: choices = [1, 2, 3]}
{elseif: variable= "Y"}
{run: choices = [1, 3, 4]}
{endif}
{formmenu: 1; 2; 3; 4; 5; multiple=yes; name=choices}

Reference: run - Text Blaze | {run}

If you face any issues with this, please let me know.

Thanks
Abhishek

This works, thank you!