Hi Folks,
I'm trying to use a dataverse table as the data source for a canvas app combo box control. I'm using some text based filters using "IN" operator which is working fine. I also want to filter out/remove some rows based on whether the Item is present in another table. I tried using Not( in ) option but it has delegation warnings. Below is the complete code in items property in Combo box:
If(!IsBlank(cmb_TrainingName.Selected.Name),
Filter(Employees, IsWorkerActive && !IsBlocked, ProjectCode in ShowColumns(Filter(Trainings, Name = cmb_TrainingName.Selected.Name),"pub_projectcode"), !(Employee_ID in ShowColumns(Filter('Training Details',TrainingID = cmb_TrainingName.Selected.ID),"pub_employeeid"))
)
)
Could any one please suggest a workaround to achieve this without delegation issue.
Thanks