I have a button in a gallery where the visibility is set based on the text from text input within the same gallery item.
If(galProjects.Selected.'Approval Status'.Value = "Approved", false, true)
this works fine, however, when I choose another item within the same gallery that does not have text = "Approve" the button reappears in all the gallery items, and this allows me to click the button within the already approved item.
Is this the normal behavior? If so, how can I make it so the button only appears for items where the mentioned text input does not = "Approved"?