I've looked this question up, but it's really difficult for me to parse how I'm supposed to fix any of this.
I'm making an app that will allow a user to look at a machine and its details. I want them to sort by business unit, and then have the option to look up a machine in the gallery.
But I'm getting nothing but errors. Here are the multiple attempts I have made:
__
(Search(newunit1,TextSearchBox1.Text, "MACHINE")
SortByColumns(Search(Search(newunit1,TextSearchBox1.Text, "MACHINE"), Dropdown1.SelectedText, "UNIT"
SortByColumns(Filter(newunit1, "UNIT" = Dropdown1.SelectedText), "UNIT", SortOrder.Ascending, SortByColumns(Search([@newunit1], TextSearchBox1.Text, "MACHINE"), "MACHINE", SortOrder.Ascending)
__
TextSearchBox1 is supposed to reference the machine name. Dropdown 1 is supposed to be the business units. I'm sure this is very simple, but I can't wrap my head around it. Any help is much appreciated.