Hi all,
I have a form that is filtered by a dropdown (Dropdown1) and a Gallery below it (Gallery1).
The form on the right has text
"Currently Editing : " & Gallery1.Selected.Name & " - " & Gallery1.Selected.Attribute
This works as expected and respects both filters. Note, "Name" is confusing as it's the field in my dropdown, but also the first Attribute.
The form also respects this (as you can see PBI appears under Original Value, and also under Name on the left, as it should.
I then have a field for Revised value, that should update a column in my excel.
This form updates correctly based on the Gallery1.Selected.Attribute but not correctly based on Gallery1.Selected.Name
I.e. here I have selected Name: Power BI, and Attribute: Name, but if I update the Revised value, it will populate the Attibute:Name of the first Application it finds (Not Name: Power BI).
I've tried changing the OnSuccess of the form to
Gallery1.Selected.Name && Gallery1.Selected.Attribute
But still no luck. Any suggestions would be appreciated.