As seen in the image above, is there a way for my searchbox element to search for these 3 specific data values?
Need help! I have tried merged with, advanced filters or anything but my searchbox element canât find any data with all three constraints, only one of them!
Just need it to search in my tracking database any basket number arriving from one of the 3 machines in which they could be SB 1, SB 2, or SB 3
you probably need to use algolia search for thisâŚ
alternatively you could create a field and put all the search values into that 1 field - then you could search that field for any of the 3 values.
if instead you need to constrain the search by those values if they exist you can check the âignore empty constraintsâ and then pass either null or the value into the search
Hey mitch, funnily enough just as you replied I solved the issue. I made an option set with all 3 machines SB 1-3, and instead of using equals I used âis inâ and that seems to have done the trick for now!
Thanks for your input though could use it for more applications!