PowerApps过滤数据

问题描述 投票:0回答:1

我在我的应用程序中遇到以下情况,正在根据处于多种情况下登录的用户来过滤数据,但是由于我的过滤器中包含“和/或”,因此检索数据需要很长时间。>

我应该使用查找/搜索吗?

UpdateContext({LoadText:"Loading Data... Please Wait..."});
//Refresh('[dbo].[table2]');

ClearCollect(table1,Filter(ShowColumns('[dbo].[table2]',"ID","Description","Room_Type","ActionBy","Action_user","Area","Room_no","Building","Floor","Topic","SubTopic","Snag_Item","userid","Attachment","Actual_Status","Desc_Const","Desc_QC","Desc_Client","Client_status","Contractor_status","Recheck_Const","Recheck_QC"), Action_user = TextInput1.Text ,
Actual_Status = "" Or Actual_Status ="Yes" && Contractor_status = "No" Or Actual_Status ="Yes" && Contractor_status = "No" && Recheck_Const = "Yes" ));

UpdateContext({LoadText:"Loading Data... Please Wait..."});

我在我的应用程序中遇到以下情况,正在根据处于多种情况下登录的用户来过滤数据,但是由于我的过滤器中包含“和/或”,因此我需要使用lookup /来检索数据需要很长时间。

powerapps powerapps-formula powerapps-canvas
1个回答
0
投票

这完全取决于您的目标:-过滤器

© www.soinside.com 2019 - 2024. All rights reserved.