Re: 3 Galleries, 3 Forms - Show/Hide Forms if a Gallery is Selected
@Applications
Sure, you can base this all off of the selection. You will want to utilize a variable.
So for example, in Gallery1, on the right arrow icon OnSelect. Set the formula to:
Set(glbForm1Item, ThisItem)
And on the second gallery icon:
Set(glbForm2Item, ThisItem)
etc...
Then in the Form for gallery 1, set the Visible property to: !IsBlank(glbForm1Item) and set the Item property to: glbForm1Item
If your next step in the process is to submit the form, then in the OnSuccess action of your Form set the variable to blank. Example in the Form1 OnSuccess action: Set(glbForm1Item, Blank())
This will hide the form and keep from having conflicts in the visibility.
I hope this is helpful for you.