代码之家  ›  专栏  ›  技术社区  ›  vijaya

PowerApps中BrowserGallery的定制

  •  1
  • vijaya  · 技术社区  · 7 年前

    I need to display the cards who got the marks in writtentest more than 50

    1 回复  |  直到 7 年前
        1
  •  0
  •   carlosfigueira    7 年前

    如果单击BrowseGallery并选择,您将看到该属性中列出的表达式已根据用户可以键入的搜索项过滤数据源:

    enter image description here

    您的表达式可能是沿着这些线的(为了清晰起见,我添加了空格/缩进):

    SortByColumns(
        Search(<yourDataSource>, TextSearchBox1.Text, "Name", "Email"),
        "Name",
        If(SortDescending1, Descending, Ascending))
    

    已筛选 数据源的版本,这可能是您想要的。您可以使用 Filter function

    SortByColumns(
        Search(
            Filter(<yourDataSource>, marks > 50),
            TextSearchBox1.Text,
            "Name",
            "Email"),
        "Name",
        If(SortDescending1, Descending, Ascending))