I have a on premise SQL table where we have 16000 records.
There is a column Named "ApplicationType".
We want to populate a dropdown in PowerApps with unique Application Type values that are there in that table.
So i used below query to fetch distinct Application Type values.
Distinct('[dbo].[SpecialProjects]',ApplicationType);
Issue :
Since PowerApp fetches 200 records at one time so this formula retrieves distinct values only for those 200 records.
This way i get only 1 unique ApplicationType values out of 3.
Any way by which we can get all distinct values of a column from SQL table?