我在我的应用程序中有以下情况,正在根据以多种条件登录的用户过滤数据,但检索数据需要很长时间,因为我的过滤器中有“和/或”
我应该使用查找/搜索吗?
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..."});