Currently trying to figure out how to make a button visible based on a what is in my collection list. I have a gallery that is pulling choices from a SharePoint list and creating multiple checkboxes. When a checkbox is selected, that title is sent to the collection list.
I need a button to be only visible if a certain checkbox is selected.
For example, in my gallery I have 4 checkboxes. Checkbox one is pH, I select pH. I now have 1 entry in my collection ( title = pH)
Below is what I have so far (which could be completely going down the wrong hole) but I feel like I am missing a small piece to it.
Visible -
If
(
LookUp(colListofAnalytes, Items = "pH").Title
,
true,
false
)