Hello,
I am having some trouble filtering my gallery on the ID column. I already have filters set up for Location, Title, Status and Requestor. This is what the item property looks like for my gallery currently;
Filter(
'Production System Change Request',
StartsWith(
Title,
txtTitle.Text
) && (Status.Value = Radio1.Selected.Value || Radio1.Selected.Value = Blank()) && ((chkMe.Value && Requestor.Email = User().Email) || (chkMe.Value = false && chkOther.Value = false) || (chkOther.Value && Requestor.Email = cbUser.Selected.Email)) && (chkLocation.Value = false) || (chkLocation.Value && Location.Value = LocationDRP.Selected.Value))
Would love any help with adding ID to this. I keep running into a lot of issues since it is a number column. So far vie added a txt input box labeled txtSearch. This is where I would like the user to type in the ID number to begin the filter. Any help is greatly appreciated 🙂