I'm creating an app that has a combo box which should filter a gallery, I also want to use a Search box. I was having an issue with the gallery showing as empty if there was nothing selected in the combo box so I got around the issue by using the following in the items property of my gallery:
If(IsBlank(cmb_Application.Selected.Result),Test,Filter(Test,Application.Value = cmb_Application.Selected.Result))
The issue now is that I want to use a search box but I can't figure out where the search bit should go in the above function. I get an error no matter when I put it.