在 Power Apps 中应用搜索和过滤器
Apply search and filter in power Apps
这里是我得到的搜索结果。但我想对搜索结果应用过滤器。
我有另一个列名 Sale Order Created
。我只想在此列值为 0 时显示结果。
如何实现?
我是 Power Apps 的新手。这是我的第一个应用程序。
如有任何帮助,我们将不胜感激。
谢谢
使用过滤器
Search(Filter('[dbo]...', column_name = 0),...
PowerApps中大部分对表进行操作的函数(例如Search, SortByColumns and Filter) return the searches / sorted / filtered table, so you can compose them together, by applying one function to the result of the other. For example, in your case, you can Filter the result of the Search,通过使用后者的结果作为前者的第一个参数,如下所示。
SortByColumns(
Filter(
Search(
'[dbo].[Efftronics Systems Pbt Ltd_,$Sales Header]',
TextSearchBox1.Text,
"No_"),
'Sale Order Created' = 0),
"No_",
If(SortDescending1, Descending, Ascending))
这里是我得到的搜索结果。但我想对搜索结果应用过滤器。
我有另一个列名 Sale Order Created
。我只想在此列值为 0 时显示结果。
如何实现?
我是 Power Apps 的新手。这是我的第一个应用程序。
如有任何帮助,我们将不胜感激。
谢谢
使用过滤器
Search(Filter('[dbo]...', column_name = 0),...
PowerApps中大部分对表进行操作的函数(例如Search, SortByColumns and Filter) return the searches / sorted / filtered table, so you can compose them together, by applying one function to the result of the other. For example, in your case, you can Filter the result of the Search,通过使用后者的结果作为前者的第一个参数,如下所示。
SortByColumns(
Filter(
Search(
'[dbo].[Efftronics Systems Pbt Ltd_,$Sales Header]',
TextSearchBox1.Text,
"No_"),
'Sale Order Created' = 0),
"No_",
If(SortDescending1, Descending, Ascending))