Hello
I have a screen with a gallery (called gallery3) linked to a SP list. I have on the right of the screen an Edit Form again tied to the same SP list. The item value of the form is set to gallery3.selected and this all works correctly. This is all guided by a text input field that filters gallery3 based on the text input. I have add a button to submit the form and all is working. My dilemma is when gallery3 is empty the submit button is still present, how do I go about hiding the button until a valid record is selected in gallery3?
I have tried using the following for the Visible property of the button but seem to be going round in circles
If(IsBlank(DataCardValue1),true,false)
My logic on the above is trying to match if the field in DataCardValue is empty then hide the button.
Can someone help me please
J