Hi!
I am trying to extract a filtered view from a specific field (list of document = to the user ID) and have this user from a search bar Search() or Find () a document tag .
AND(
Search(‘Search Term’, {doc-tag}),
({company-id}=‘User company-id’)
)
The first time the user logs in and nothing has been typed (yet) in the search bar, it seems that the query is not yet triggered (maybe because as their is no search term typed, the AND formula returns false), it’s only after the user types any string that the query is enabled.
Any tips on that issue?
Thanks!