【问题标题】:How do i filter empty column in powerapps如何过滤powerapps中的空列
【发布时间】:2019-09-26 00:20:04
【问题描述】:

这是我的代码,我试图从我的图库中的表中显示所有在 Image 列中没有空值的数据记录,但它失败了。

SortByColumns(Search(Filter(InspectionImages,Image!=""), TextSearchBox1.Text,"Machine"), "Machine", Ascending)

【问题讨论】:

    标签: powerapps


    【解决方案1】:

    您可以为此使用<> 运算符:

    SortByColumns(
        Search(
            Filter(InspectionImages, Image <> ""),
            TextSearchBox1.Text,
            "Machine"),
        "Machine",
        Ascending)
    

    如果图像可以为空(不仅是空的),您还可以添加:

    SortByColumns(
        Search(
            Filter(InspectionImages, Image <> "", Image <> Blank()),
            TextSearchBox1.Text,
            "Machine"),
        "Machine",
        Ascending)
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-03-01
      • 1970-01-01
      • 2018-03-18
      • 1970-01-01
      • 1970-01-01
      • 2018-10-04
      • 2019-11-18
      • 2017-06-15
      相关资源
      最近更新 更多