Hi @akosila ,
Does the second ComboBox list values properly within your app?
Based on the issue that you mentioned, I suppose that you have faced a Delegation warning issue with your Filter formula. Firstly, the Delegation warning issue is not an error, it just told that you could not delegate the data process to your SP list data source itself, instead, you could could only process your data locally in your app.
In default, you could only process 500 records locally at most within your app. You could change the "Data row limit for Non-delegable queries" option to maximum value -- 2000 within Advanced settings of App settings, then you could process 2000 records locally at most. If the amount of your SP List Records is not more than 2000, you could ignore this warning issue.
Note: Currently, the 'in' operator is not delegable within SP list data source, please check the following article for more details:
https://docs.microsoft.com/en-us/connectors/sharepointonline/#powerapps-delegable-functions-and-operations-for-sharepoint
If the amount of your SP List is not more than 2000, and you want to get rid of this Delegation warning issue, please take a try with the following workaround:
Set the OnSelect property of App control to following:
ClearCollect(RecordsCollection, 'MyList')
Then set the Items property of the second ComboBox (Model ComboBox) to following:
Distinct(
Filter(RecordsCollection, Title in ComboBox4.SelectedItems.Result),
Model
)
then re-load your app (fire the OnSelect property of the App control), then check if the issue is solved.
Best regards,