Hello everyone, I would be most grateful for any advice please on the following:
I have a gallery that is filtered based on a person's role with my company (varRole) whereby the role "QSFI" will only allow that user to view their own form data, whereas other users (managers for example) can see everyone's form data, or an individual's form data based on a dropdown text value. This works perfectly and the code in the items property of the gallery is:
If(
varRole="QSFI",
Filter('TTF Staff Trg',Pilot.Email=varUser.Email),
Filter(
'TTF Staff Trg',
QSFI.Value = DropdownPilot.Selected.Value || If(
DropdownPilot.Selected.Value = " All ",
true,
false
)
)
)
I would now like to add a search to this by a single column "ID" and have been trying all sorts of variations without any luck whatsoever. Most grateful for any thoughts please?
Thanks very much indeed...