Power Apps SortByColumns 函数使用注意事项
微软文档链接:Power Apps 中的 Sort 和 SortByColumns 函数
关于SortOreder
与SortOrderTable
的区别
SortOrderTable
先显示提到的单列表。
SortByColumns
与其他函数嵌套使用
下面例举了SortByColumns
与其他函数嵌套使用的情况
SortByColumns(
//将Filter过滤后的数据供给SortByColumns查询
Filter(
[@XCEv2],
StartsWith(
Title,
TextSearchBoxOfProject.Text
)
),
"Title",
If(
SortDescending1,
Descending,
Ascending
)
)
本作品采用《CC 协议》,转载必须注明作者和本文链接