Hello @v-jefferni ,
I got it creating some support collections. I dont know why but the combobox SearchField is not able to use columns with number type.
In the combobox I am just showing the site_name, and in the button to filter I have this code below:
Clear(colSupport2);
Clear(colGridData);
Clear(colVault);
ClearCollect(colSupport2, cb_SiteName.SelectedItems);
ForAll(colSupport2, Collect(colVault, Filter('mdf.Vault_Changes',Item_Reviewed = false || Item_Reviewed = Blank(),Site_ID = colSupport2[@Site_ID])));
ClearCollect(colGridData,AddColumns(colVault,"Site_Name",LookUp(colSite,Site_ID = colVault[@Site_ID],Site_Name),"Site_Acronym",LookUp(colSite,Site_ID = colVault[@Site_ID],Site_Acronym)))
colSupport1 is the collection just with Site_Name and Site_ID.
This solution is working and whether I select all items in the combobox, it can give me a collection with more than 2000 rows too.