Hey guys, I have an app who I wanna to filter by:
OnStart app: Show all the data from SharePoint list, and filter by email permissions.
Like, "Shane" has power to filter all the gallery with the all data on SharePoint
But "April" has no permission to filter all the data, just the data he created.
And I need to show all the data if "Shane" is logon
And if is not, show the data only the user created = "April" only see her creation.
And I make this formula:
If(User().Email="xy@email.com";Despesas;Filter(SortByColumns(Despesas;"ID";Descending);'Criado por'.Email = varUser.Email))
And it works, but I need to add a multiple filters on the formula,
When the gallery visible:
Show the gallery Descending by the data, and search by "name" on a text input" or filter by a dropdown "ID" or filter by a "status of payment"
And I tried this one:
Search(Sort(Filter(Despesas;StartsWith(Solicitante;TextInput1.Text)||ID=DropDown1.Selected.ID);ID;Descending)||ComboBox4.Selected.Value="pago")

Is that possible?
Thanks dor the help!