@EddieE here is what i get:-
Inside the Screen Onvisible , i build the collection:-
ClearCollect(childcol,ShowColumns(Child2,"ParentId"));
and it get all the related ParentIDs from the child2 list and store them inside the childcol collection..
then inside the ComboBox >> i define this inside the Item property:-
Filter(Parent_1, ID in childcol.ParentId).Title
where i got a delegation warning on the "in" operator >> so the combox box did not show anything, as the first 2,000 records inside the Parent_1 do not have their Ids inside the childcol collection... so is there a way to fix this?
Thanks
**EDIT**
I also tried this approach, where inside Onvisible property of the screen i define this formulas to get the ParentId inside the Child2 list + forall of the ParentId and get the related Parent_1 records:-
ClearCollect(childcol,Child2, ["ParentId"]);
ForAll(childcol,Collect(parentcol,Filter(Parent_1,ID=childcol[@ID])));
and then inside the Combobox items property i define this formula:-
parentcol.Title
where i did not get any delegation warning,,, but the combobox will be empty...