I am using a static dropdown menu for a simple yes no selection for a party RSVP to feed into my database by the workflow. The “Attending Answer” is the element dropdown menu input and the relevant column in the database is “Attending?”
Is Yes/No a state on your Attending Answer element? (according to your screenshot, this is the case). Also, is Attenting? a yes/no field or a text field?
Actually, you are using a dropdown. This return text (in most case). So I suspect that you are using a state Yes/No on the element.
You can see if there’s a state by clicked on i on top right.
In your screenshot, it should be Attenting? = Attending Answer’s value that will refer to the value of the dropdown directly.
Yes exactly. But because this is a text, you will need to play a little bit with that
Complete the expression by: … value is “Yes”
This will return true or false
So if I understand it correctly, out of the “Attending?” = “Attending Answer’s value if ‘Yes’” expression above the "Attending Answer’s value if ‘Yes’" portion is actually returns yes or no? so the resulting yes or no is = "Attending?"
If the user select Yes (text) the answer will be yes (true). If the user doesn’t select anything (shouldn’t be possible with your setting) the result will be no (so false) and if the user select No, it will be no (false) too.
Because you are using a comparator (is… mean =), this give a conditionnal that will return Yes or No.