简体   繁体   English

如何过滤 Microsoft PowerApps 中的某些特定数据

[英]How to filter some spesific data in Microsoft PowerApps

I am creating a Powerapp which needs to import data from a excel sheet and once those data loaded, I want to edit some of data.我正在创建一个需要从 excel 表导入数据的 Powerapp,一旦加载了这些数据,我想编辑一些数据。 I used Gallery and Gridview and managed to extract data from that excel file.我使用了 Gallery 和 Gridview 并设法从 excel 文件中提取数据。 I used edit forms, but didn't work for me.我使用编辑 forms,但对我不起作用。 The fields on the table are FirstName,LastName,Email and ManagerName.表中的字段为 FirstName、LastName、Email 和 ManagerName。

My questions are:我的问题是:

  1. What is the best way to retrieve data to edit?检索要编辑的数据的最佳方法是什么? I have 500+ records.我有 500 多条记录。
  2. I want to filter the users who are under same manager.我想过滤同一经理下的用户。

Here is the sample data table of mine.这是我的示例数据表。 在此处输入图像描述

Any advice really appriciate.任何建议都非常有用。 I tired several methods but didn't success.我累了几种方法,但没有成功。 Seeking your support.寻求您的支持。 Thanks in Advance.提前致谢。

You use the excel-connector to work with your data?您使用 excel-connector 处理您的数据?

Filter(
     YourExcelData,
     DropDownContainingManager.Selected.Value = Manager
)

Now PowerApps will filter all records and show the records where the manager is equal to a value you selected from a dropbox.现在 PowerApps 将过滤所有记录并显示管理器等于您从保管箱中选择的值的记录。 (You have to specify something to filter...) (您必须指定要过滤的内容...)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM