I have a lists DB projects, in projects I have two fields "location" and "region"
suppose I use location and region as distinct dropdown.
I want to create a search from one or both dropdowns. How would I do this when multiple dropdowns are populated? I do not see Search having the ability to search multiple columns in the list, only multiple values.
can I do something like or how can I do:
If(IsBlank(region),Search('table',dropdown.region.value,"region"),Search('table',dropdown.region.value,dropdown.location.value,"region","location"))