Forum Discussion
Filtering Columns of Data (Named Ranges) based on Brand Names
- Apr 20, 2024
See Sheet2 in the attached version. If it is not what you want, please explain.
In A2 on the second sheet:
=LET(f, VSTACK(FILTER(productLists, ISNUMBER(SEARCH(A1, productLists)), ""), FILTER(Clearance_Products, ISNUMBER(SEARCH(A1, Clearance_Products)), "")), FILTER(f, f<>"", ""))
Fill to the right.
- HansVogelaarApr 21, 2024MVP
Use
=LET(f, VSTACK(FILTER(productLists, ISNUMBER(SEARCH(" "&A1&" ", " "&productLists&" ")), ""), FILTER(Clearance_Products, ISNUMBER(SEARCH(" "&A1&" ", " "&Clearance_Products&" ")), "")), FILTER(f, f<>"", ""))
See the attached version.
- PeteSaucesApr 20, 2024Copper Contributor
Another quick question to another problem:
I don't want the filtered results to include results that include words/brands in which, "the word is in a part of another word"....For example, if the filter criteria is "Protect" and one of the products is "Speaker with 10-Year Protection Plan", is there any way to filter using only the word "Protect"...
Peter
- PeteSaucesApr 20, 2024Copper ContributorYes... This works, thank you!!
- HansVogelaarApr 20, 2024MVP
See Sheet2 in the attached version. If it is not what you want, please explain.
- PeteSaucesApr 19, 2024Copper Contributor
- HansVogelaarApr 19, 2024MVP
Sorry, you've lost me again. What exactly do you want?