
Announcements
Hi , I have a situation I have a sharepoint list where I have a column with values.
I created a gallery in which I have a checkbox and in OnCheck I wanted it to take values when it is checked and it works
Collect(CollProjectsAdmin,ThisItem.Admini)But I don't know how to remove it because giving Remove and RemoveIf gets an error
RemoveIf(CollProjectsAdmin, Admini = ThisItem.Admini)Remove(CollProjectsAdmin, ThisItem.Admini = Admini)
HI @Palucci12 ,
OnCheck:
Collect(CollProjectsAdmin,Admini:ThisItem.Admini)OnUncheck:
RemoveIf(CollProjectsAdmin, Admini = ThisItem.Admini)Hope this will help you,
Best Regards,
Tina