Hi all,
I am working on a small app that will track asset location.
There are 3000+ assets and not all of them have assigned City and/or Room.
I want to display in gallery only items that have at least 1 of those assigned. City and Room are choice columns in SharePoint with multiple values (single select).
Here is my Filter used in Gallery:
Filter(
'Asset management',
(City.Value = Dropdown_City.Selected.Value || IsBlank(Dropdown_City.Selected.Value))
&& (Room.Value = Dropdown_Room.Selected.Value || IsBlank(Dropdown_Room.Selected.Value))
&& ('Type of asset'.Value = Dropdown_Type_of_asset.Selected.Value || IsBlank(Dropdown_Type_of_asset.Selected.Value))
&& (!IsBlank(City.Value) || !IsBlank(Room.Value))
)
Issue:

&& (!IsBlank(City.Value) || !IsBlank(Room.Value))
I get a delegation error.
Same goes for following options:
&& (Not(IsBlank(City.Value)) || Not(IsBlank(Room.Value)))

&& (City.Value <> Blank() || Room.Value <> Blank())

I am at a loss... Tried to create Collection OnStart with similar filter with delegation error on ">=" which does not make sense as it is supported.
Any Idea, suggestion, guidance is strongly appreciated.