【发布时间】:2019-09-26 00:20:04
【问题描述】:
这是我的代码,我试图从我的图库中的表中显示所有在 Image 列中没有空值的数据记录,但它失败了。
SortByColumns(Search(Filter(InspectionImages,Image!=""), TextSearchBox1.Text,"Machine"), "Machine", Ascending)
【问题讨论】:
标签: powerapps
这是我的代码,我试图从我的图库中的表中显示所有在 Image 列中没有空值的数据记录,但它失败了。
SortByColumns(Search(Filter(InspectionImages,Image!=""), TextSearchBox1.Text,"Machine"), "Machine", Ascending)
【问题讨论】:
标签: powerapps
您可以为此使用<> 运算符:
SortByColumns(
Search(
Filter(InspectionImages, Image <> ""),
TextSearchBox1.Text,
"Machine"),
"Machine",
Ascending)
如果图像可以为空(不仅是空的),您还可以添加:
SortByColumns(
Search(
Filter(InspectionImages, Image <> "", Image <> Blank()),
TextSearchBox1.Text,
"Machine"),
"Machine",
Ascending)
【讨论】: