Hi @trev_2000 that is possible with the code below:
If(
CountRows(Gallery1.AllItems) = CountRows(
Filter(
Gallery1.AllItems,
Checkbox2.Value
)
),
DisplayMode.Edit,
DisplayMode.Disabled
)
Replace Gallery1 and Checkbox2 with the actual names of your controls.
If you have multiple checkboxes for each item and all checkboxes of all items need to be selected, you can expand the query below:
If(
CountRows(Gallery1.AllItems) = CountRows(
Filter(
Gallery1.AllItems,
Checkbox2.Value && Checkbox3.Value && Checkbox4.Value
)
),
DisplayMode.Edit,
DisplayMode.Disabled
)
If only one of the checkboxes of each Item needs to be checked, swap && with ||
If this solves your question, would you be so kind as to accept it as a solution.
Thanks!