I've seen several articles regarding this and am not able to come up with a solution.
I have a gallery where I want to filter on a lookup field:
Filter(Projects,Or(IsBlank(SearchProjectInput.Text),SearchProjectInput.Text = ProjectType_New))
= is an invalid operator for this formula so I tried:
Filter(Projects,Or(IsBlank(SearchProjectInput.Text),SearchProjectInput.Text in (ProjectType_New)))
This results in an actual error (not a warning) that the "local evaluation would produce sub-optimal results" and the filter function fails.
Please help and thanks!