I have an app in which I want to present the data that is relevant to the user (data is stored in the SP list).
I did achieved this with
SortByColumns(
Filter('Training',
Email=User().Email,
TextSearchBox1.Text in Title)
,
"Training_x0020_Sort_x0020_Code",SortOrder.Ascending
)
on the Gallery under Data>Items.
However, I am getting delegation warning (my search bar is not working) and I am concerned about the performance of the app when I will have more users.
Is there a way to filter the data on load based on the user?