Hi to all,
I'm currently trying to build a flow that basically sends a message and options in teams and in parallel sends out a reminder (do until) if the recipients have not yet selected an option. Because I have several recipients, I have a "for each" loop. Now I have to build this flow somehow so that it checks for each recipient whether an option has been selected and if not, sends the reminder (do until).
So far I have solved this by initializing a Boolean variable at the beginning. this is set to false. if an option (whether yes or no) is selected, the variable is set to true and the do until stops if the variable is true.
So far the flow runs successfully, even with the reminder. However, as soon as one of the recipients selects an option, the set variable overwrites all "for each" loops to true, so that my other recipients, who may not yet have selected an option and need a reminder, no longer receive one. the set variable action therefore changes the Boolean globally and not "for each".
How can I change this or what can I use instead of "set variable"?

