HI, I am building an app which books patient notes in - i am getting location and user information from an SQL DB and i have a lot of locations and a lot of users respectively, the issue is that i am using a combo box to call the users/locations dependant on where the user would like to book the patient notes to. my issue is that its only fetching me 500 records back when using distinct. here is my code...
If(Dropdown2_2.Selected.Value = "User",Distinct('[dbo].[View1]',Name),Distinct('[dbo].[View2]',Name))
any ideas on how to bypass this 500 record limit?