Hi Team
I have gallery where user is booking a desks by checkBox

Now CheckBox Properties:
OnCheck
Set(DeskAvb, DeskAvb -1);
Collect(MultiDeskSelection,ThisItem)
OnUncheck
Set(DeskAvb, DeskAvb +1);
ClearCollect(MultiDeskSelection,ThisItem)
User can check only one desk if he will check 2 or more he will have popup window.
The glitch i have is that when user check two or more boxes and then uncheck all the collection still store a desk.
If user check desk 83, 85, 87 and then uncheck 83, 85 the collection will store desk 85 (should 87)
So somehow I am using wrongly the ClearCollection( function
When the screen is loading I am clearing the collection and when DeskAvb hit 1 I am also clearing the collection so it`s not because it left from other screen
Any thoughts please ?