Powerapp で OR 関数を使用するのに苦労しています
私は持っている
SortByColumns(Filter(Scopes, StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))
そしてまた
SortByColumns(Filter(Scopes, StartsWith(Title, BarcodeScanner1.Value)), "Title", If(SortDescending1, Descending, Ascending))
しかし、バーコードスキャナー1またはテキストボックス検索の値を表示するように組み合わせたい
私は試した
SortByColumns(Filter(Scopes, StartsWith(Title, OR(TextSearchBox1.Text,BarcodeScanner1.Value))), "Title", If(SortDescending1, Descending, Ascending))
しかし、これは機能しません...
任意のヒント?