I have a single column collection called, "colCheckStatus." I am trying to see if a value exists. If it does exist I want make visible a text box to enter information. Each checkbox adds/removes to the collection. I can't just have a simple if then on the text box because the checkboxes are in a gallery pulling their titles from sharepoint.
Here is my current formula.
If(colCheckStatus.Value = "Active", true , true, false)
Here is what I am hoping for. Some of these will be checked but only one will activate a text box.

