Hello Everyone :)
I'm trying to filter a gallery by the current user of the app which at the same time is the supervisor of the agents that should appear on the gallery (each agent has a dedicated ticket).
The Supervisor information is taken from a second dataset.
Therefore, I set the "Items" attribute of my Gallery with the following formula:
Filter(
Sort(
Dataset1,
'Status (TicketStatus)'.Value,
SortOrder.Descending
),
LookUp(
Dataset2,
AgentDataset1 = Agentdataset2
).Supervisor = AppUser
)
However, since each supervisor has several agents under his/her lead, the formula retrieves a table that does not filter the Gallery.
Anyone that can support me please?
Thanks