I’m having trouble setting multiple select value using a button.
I have a table with people in it:
Name Active
Alice Yes
Bob Yes
Charles No
Dave No
Ethan Yes
I have a multiple select control on the canvas, which is linked to the table.
There is a button also that should set the multiple select value to the active persons:
SetControValue(multipleSelectControl, people.Filter(Active = true))
It’s not working. When button is pressed, the multipleSelectControl value is set to “True”.