I'm brand new to power apps. Below is the data selected from the BrowseGallery1:
SortByColumns(Filter([@Tracking], StartsWith(JobNumber, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))
I'd like to add a filter that shows initially only shows Jobs with a "Release to Construction" date field > "0" and further filter on the "JobNumber" once it's entered into the search box.
I've tried:
SortByColumns(Filter([@Tracking], StartsWith(JobNumber, TextSearchBox1.Text) && ('Release to Construction'.Value>0), "Title", If(SortDescending1, Descending, Ascending))
(The red is how what i added) But I keep getting errors, and it won't work.
Any help would be appreciated.
Brett