Hello all!
I am creating app to search in a SharePoint list. The app is working fine but I need to add one more feature I cannot figure out.
This is the current code for the gallery:
SortByColumns(
Filter(
[@Materialliste],
TextSearchBox1.Text in Materialnummer ||
TextSearchBox1.Text in Bezeichnung ||
TextSearchBox1.Text in SLOC ||
TextSearchBox1.Text in WE
),
"Title",
If(SortDescending1, SortOrder.Descending, SortOrder.Ascending)
)
I can search for all of the four above items (Materialnummer, Bezeichnung, SLOC, WE) but I have some items in the list, that use the same Materialnummer (Material Number), so I want it to filter with the WE number descending.
Does somebody have a tip for me to filter this?
Thanks:)