Hi,
In my app, I have a screen which shows all the records that the current user have submitted.
OnVisible of the screen: Set(FilteredWorkOrders,Filter('[dbo].[Test]',SubmittedBy=UserEmail, Deleted = false));Refresh('[dbo].[Test]');
Items of the gallery: SortByColumns(Search(FilteredWorkOrders, TextInput6.Text, "Description"),"id",If(SortDescending1,Descending,Ascending))
OnSelect of Gallery: Set(CurentUser, User());ResetForm(EditForm1);Navigate(CreateScreen, ScreenTransition.Fade);Set(selected,Gallery1.Selected)
Users who have submitted more than 500 records are not able to see the 501th and more. I tried changing the limit to 2000 by going to file- setting- advanced settings- value=2000 but I dont see all the details of the app as expected. Its causing more issues.
Is there a better way for me to fix this ? Any advise is much appreciated.