I cannot not add more than one command in the 'OnSelect' function of a button in PowerApps.
Using the comma or semicolon as a separator both result in the following error message:
What to do?
I use the EU version, Dutch language.
Solved! Go to Solution.
Hi @Anonymous ,
I am not sure what region you are in but the two possibilities
Navigate(Screen1);
Collect(
MyAgendaCollection, AgendaOverzicht
)
OR
Navigate(Screen1);;
Collect(
MyAgendaCollection; AgendaOverzicht
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Anonymous ,
I am not sure what region you are in but the two possibilities
Navigate(Screen1);
Collect(
MyAgendaCollection, AgendaOverzicht
)
OR
Navigate(Screen1);;
Collect(
MyAgendaCollection; AgendaOverzicht
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Great, Thank you very much, WarrenBelz!! The solution is that multiple commands must be separated by two semicolons!!
I had the same problem!
I had the same problem! and you made my day. thanks a lot!