I have Gallery1, in which there is a 'Trash' icon that allows the user to delete that item in the gallery with -
Remove(Subscriber_Address_List,ThisItem)
There is a desire to provide a message that asks the user if they want to delete this item, to minimize unintended deletes.
To that end, I have added a Label1 (with the message), and a 'Yes' and 'No' button.
The 'Yes' button now has the Remove(Subscriber_Address_List,ThisItem) formula, as well as Set(varDeleteControlsVisible, false).
The 'Trash' icon now has Set(varDeleteControlsVisible, true).
The 'No' button has Set(varDeleteControlsVisible, false).
My issue, when the 'Trash' icon is pressed the other controls appears in each item of Gallery1. Is there a formula I can use that when the 'Trash' icon is pressed the other control appear only in the item in which the 'Trash' icon was pressed and nowhere else?

