@Anonymous ,
One approach would be to do a Collection
ClearCollect(
colCCB,
AddColumns(
CCB,
"Checked",
false
)
)
Your Items would then be
Filter(
colCCB,
If(
IsBlank(Dropdown1.SelectedText.Value),
true,
'Functional Area' in Dropdown1.SelectedText.Value
),
If(
IsBlank(Filter.Text),
true,
StartsWith('Requirement Source',Filter.Text)
),
If( // Add formula here
IsBlank(Search_.Text),
true,
StartsWith(Name, Search_.Text)
)
)
The Default of your CheckBox would be
ThisItem.Checked
The OnCheck of your CheckBox would be
Patch(
colCCB,
ThisItem,
{Checked:true}
)
OnUncheck would be
Patch(
colCCB,
ThisItem,
{Checked:false}
)
Your check boxes would then retain their values.
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.