Hi @UrquidiAlex,
Based on the issue that you mentioned, do you want to filter the gallery based on the current user?
Could you please share a bit more about your scenario?
Actually, if you sue the User() function to define the current login user, please refer to the Email parameter.
Modify your formula as below:
SortByColumns(Filter([@ClientReassignmentRequest],
If(StatusFilter.Selected.Value="All",true,Status.Value=StatusFilter.Selected.Value),
StartsWith(Summary, TextSearchBox1.Text),
User().Emai=RequestedBy.Email), // Here I assume that you have a Person column to store the user info who requested.
"Created",
If(SortDescending1, Descending, Ascending)
)
Or, if you use the auto-generated column CreatedBy column to save the requester, I think you could just modify as below:
SortByColumns(Filter([@ClientReassignmentRequest],
If(StatusFilter.Selected.Value="All",true,Status.Value=StatusFilter.Selected.Value),
StartsWith(Summary, TextSearchBox1.Text),
User().Emai='Created By'.Email), // Here I assume that you have 'Created By' column to store the user info who requested.
"Created",
If(SortDescending1, Descending, Ascending)
)​
Hope it could help you at some degree.