Hi,
is it really not possible to filter a lookup column to another table for empty items in Teams Dataverse?
For example, this returns a delegation warning:
Filter(Users; IsBlank(LookupField))
Other options like this also don't work:
Filter(Users; LookupField = Blank())
What is also strange is that when using the first example, I get a table containing the correct rows (when looking at the result inside the powerfx field) but when displaying them to a combobox or table control, all values are empty.
When i change the code to this, I get the data in the control, but only this one field. Why is that?
Filter(Users; IsBlank(LookupField)).Name
Thanks