Hey,
I am using a button to delete one item from my sharepoint list.
My first approach was to use it this way:
On Select -> Remove(Label_section;LabelSection_gallery.Selected)
This worked ok but I wanted to show a popUp for the user confirm he wants to delete the record and not just delete it immediately.
With this in mind, I created a popUp that only shows with a boolean var = true.
In the popUp, the user can confirm or cancel:
- If he cancels, the var is set to false -> Set(varDeleteLabel;false) -> THIS WORKS
- If he confirms, the record is deleted and i wanted to also set the var to false so the popUp disapears
- -> Remove(Label_section;LabelSection_gallery.Selected) & Set(varDeleteLabel;false)
But, when I add this last part (set function) it shows an error:

PS: I have already tried to change the "&" to a ";" , "And" or ","
I can't understand what is happening, can someone help me with that? Is that a bug?
Best regards,
João Murteira