
Announcements
I would like to filter the primary gallery in my app based on another column called lifecycle.
The current filter is as follows:
SortByColumns(Filter(Parts, StartsWith(PartName, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))
I have tried the following:
Parts, StartsWith(PartName, TextSearchBox1.Text), lifecycle <> "Dead"), ....
Any ideas?
(Parts, StartsWith(PartName, TextSearchBox1.Text) && lifecycle <> "Dead"), ....