Hi @Greg27 ,
If you simply want to allow for a blank value in ResidenceBuildings - note the difference between IsBlank(ResidenceBuildings), which is not Delegable and ResidenceBuildings = Blank() which is Delegable.
With(
{
_dd: dd_SearchField.Selected.Value,
_txt: txt_SearchValue.Text,
},
(
varGalleryFilter = 5 &&
(
(
_dd = "LicensePlateNumber" &&
LicensePlateNumber = _txt
) ||
(
_dd = "PermitNumber" &&
PermitNumber = _txt
) ||
(
_dd = "RegistrantID" &&
RegistrantID = _txt
) ||
(
_dd = "ResidenceBuilding" &&
ResidenceBuilding = _txt
) ||
) ResidenceBuilding = Blank()
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps