Form Builder - E-mail Finisher: Addressing multiselect objects

Hello all.
Given, a multiselect checkbox named “foo” has two options, “bar1” and “bar2”.
How can I address the foo array in order to get the status of each single bar option in the E-Mail finisher?
As the single option has no ID, I am lost for now.
Do I need to use an index?
I tried:
{form.formState.formValues.foo(1)}
{form.formState.formValues.foo.options(1)}
{form.formState.formValues.foo.options(“bar1”)}
I even tried {form.formState.formValues.foo.bar1}, though I know, that “bar1” is a label and no ID.

Can anybody provide a simple sample, please?
Best regards
Friedhelm

Hi, You can use f:debug to show the content of a variable for debugging.
Your should be able to access the items with foo.0 and foo.1 I think

1 Like

Worked.
Thank you, that was helpful.
Friedhelm