在搜索命令 Power Apps 中显示错误
Showing error in Search Command Power Apps
SortByColumns(Search('[dbo].[Efftronics Systems Pvt Ltd_,$Sales Header]', TextSearchBox1.Text, "Applies-to_x0020_Doc__x0020_No_","Applies-to_x0020_ID","Area"), "Applies-to_x0020_Doc__x0020_No_", If(SortDescending1, Descending, Ascending))
我正在从 powerApps 连接到 SQLServer。然后我连接到一个 table。然后是 PowerAPPS Building App 本身。
在第一页是为了搜索。但是它显示错误。
Inner Exception: Syntax Error at position 8 in Applies-to_x0020_Doc__x0020_No desc
我对 PowerApps 还很陌生。
我只想搜索 No_ 列值。如何编写搜索命令。
我是 PowerApps 新手。这是我的第一个应用程序。
如有任何帮助,我们将不胜感激。
您需要在每一列之后进行排序,出现此错误是因为在 "Applies-to_x0020_Doc__x0020_No_"
之后您得到的是 "Applies-to_x0020_ID"
而不是 If(SortDescending1, Descending, Ascending)
SortByColumns( Table, ColumnName1 [ SortOrder1, ColumnName2, SortOrder2, ... ] )
SortByColumns(Search('[dbo].[Efftronics Systems Pvt Ltd_,$Sales Header]', TextSearchBox1.Text, "Applies-to_x0020_Doc__x0020_No_","Applies-to_x0020_ID","Area"), "Applies-to_x0020_Doc__x0020_No_", If(SortDescending1, Descending, Ascending))
我正在从 powerApps 连接到 SQLServer。然后我连接到一个 table。然后是 PowerAPPS Building App 本身。
在第一页是为了搜索。但是它显示错误。
Inner Exception: Syntax Error at position 8 in Applies-to_x0020_Doc__x0020_No desc
我对 PowerApps 还很陌生。
我只想搜索 No_ 列值。如何编写搜索命令。
我是 PowerApps 新手。这是我的第一个应用程序。
如有任何帮助,我们将不胜感激。
您需要在每一列之后进行排序,出现此错误是因为在 "Applies-to_x0020_Doc__x0020_No_"
之后您得到的是 "Applies-to_x0020_ID"
而不是 If(SortDescending1, Descending, Ascending)
SortByColumns( Table, ColumnName1 [ SortOrder1, ColumnName2, SortOrder2, ... ] )