Hi everyone,
I am trying to create a screen where there's a gallery connected to a SharePoint List, In this SharePoint List, there's a column that lists who created the entries, I want to Filter this gallery to show only the entries of the current user logged in in the system, also the user can add another filter either to show only pending for approval, approve, or show all records under his name.
ill also have try this:
Filter(
ColDMAT,
IsBlank(ComboboxCanvas2.Selected.Value) || IsEmpty(ComboboxCanvas2.SelectedItems) || 'Request Status' in (ComboboxCanvas2.SelectedItems),
'Created By'.Email = varUser.email || 'Modified By'.email = varUser.Email
)
result still the same.
