Hi,
I have 3 controls for filtering a powerapps gallery in application.
SeachInput, 2 Combo Boxes.
3 columns in SharePoint List-
Item Title -> SearchInput
Ratio ->cbxRatio
ItemValue -> cbxItemValue
Able to Search and filter gallery based on Ratio properly.
ISSUE -But ItemValue filtering is making my gallery blank. cbxItemValue is displaying list of values though.
Below code is applied on gallery Items property:-
Filter('TEST LIST',
StartsWith(
'Item Title',
SearchInput.Text
) && ('Ratio'.Value=cbxRatio.Selected.Value || cbxRatio.Selected.Value = Blank()) && ('ItemValue'.Value=cbxItemValue.Selected.Value || cbxItemValue.Selected.Value = Blank())
)
Please help me with this.