I have a Share Point list which has Region , Country and Company which i had added in my PowerApps and using cascading to filter those Three column in my combo Box. But for UNITED STATES their are more the 2000+ company and I can only see 2000 records.
For Region I have Drop Down - East , West , North , South ,
For Country i had added a formula in Combo Box Items : If(!IsBlank(DropdownRegion.Selected.Value),Distinct(Filter('MYSharePointList','Account Region' = DropdownRegion.Selected.Value),'Account Country')) ,
For Company I had added a formula in Combo Box Items : If(!IsBlank(ComboBox1.SelectedItems),Distinct(Filter('MYSharePointList','Account Name Starting Letter' = ComboBox1.Selected.Result),'Account Name')).
But I can only see 2000 records in my Company List when i am selecting UNITEDSTATES.
One more option i had added that when i selected UNITEDSTATES in my country list it give popup to add Company name but still it is showing 2000 records only.
How to perform this issue so that for UNITEDSTATED in get the full list from my sharepoint.