Hi All,
I have a screen that contains an Edit Form and a Gallery. When the users change one of the values in a Data Card (it is a drop down with allowed values), I want to filter the gallery with that data. I was able to make this work on another screen that was using a normal drop-down input object that was not inside of an edit form.
My edit for object is DataCardValue8 and my gallery filter is currently: Filter(L_ITDowntime_ApplicationLookup,Title=DataCardValue8.SelectedText.Value)
I've tried also just referencing the value in the data card in a text label using this as the text value:
"Selected Dept: " & DataCardValue8.SelectedText.Value
However, both the gallery and the text label are returning blank/null when referencing DataCardValue8.SelectedText.Value, even though there is an item selected. Any ideas on what I need to do to reference the selected text in an allowed values data card on an edit form?