I have a gallery with 2 checkboxes CheckBoxYes and CheckboxNo and one label Thisitem.LineItem
I would like to filter a dropdown to show only those items in the gallery where the check box CheckBoxNo has been checked.
I'm using this.. But it shows all of the items in the gallery not just the ones where checkboxNo is checked.
Filter(
Gallery1.AllItems,
CheckboxNo.Value = true
).LineItem
Any suggestions?
TIA