Dear community
In my table "integration" there is a nested table (not record!) called "managersNested". In my gallery, I have added the following as for the Items property:
SortByColumns(
Filter(
AddColumns(
integration,
"managersNested",
Filter(
managers,
Title = integration[@Title],
(role = "390" || role = "420" || role = "932")
)
),
StartsWith(Title, textinput.Text) ||
StartsWith(Street, textinput.Text) ||
StartsWith(Zip, textinput.Text) ||
StartsWith(Place, textinput.Text)
),
"Title"
)
I would now like to also be able to return entries in mentioned gallery above ("integration" data source) when searching for managersNested.UserId and was wondering how you would approach this?
Simply adding another "StartsWith(managersNested.UserId, trextinput.Text)" doesn't work, unfortunately 😞
Thanks in advance