Apr 16 2024 02:18 PM
Hi Everyone,
I am trying to filter columns of data (named ranges) that are on same Excel spreadsheet based on brand names... I want the results of what have been filtered on a different spreadsheet.
Peter
Apr 16 2024 02:45 PM
Apr 16 2024 04:50 PM
Sorry!! I forgot to delete the old Named Ranges and make new ones... Please see the new file..
Peter
Apr 17 2024 01:25 AM
Thanks, the names are valid now. Can you explain what and how you want to filter?
Apr 17 2024 01:37 PM
I would like all information in the Excel file to remain in the same cells that they are on the first spreadsheet, but at the same time, I want the same information categorized by brandnames on a second spreadsheet (one column for each category)...
Does anyone know the formula(s) for this?
Peter
Apr 17 2024 02:32 PM
Can you provide a few examples of the desired output?
Apr 17 2024 05:06 PM
Attached in this document are the examples for what I want based on the document that I attached previously...
But please keep in mind, this is only a gist of the real project, the real data that I have to deal with has a lot more columns...
Peter
Apr 18 2024 03:56 AM
How can I determine that Scotch-Brite is a brand name, and not 3M?
Apr 19 2024 01:55 PM
Apr 19 2024 02:18 PM
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.
Apr 19 2024 02:43 PM
Apr 19 2024 02:46 PM
Sorry, you've lost me again. What exactly do you want?
Apr 19 2024 03:52 PM
Apr 20 2024 04:18 AM
SolutionSee Sheet2 in the attached version. If it is not what you want, please explain.
Apr 20 2024 07:08 AM
Apr 20 2024 08:07 PM
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
Apr 21 2024 03:45 AM
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.
Apr 20 2024 04:18 AM
SolutionSee Sheet2 in the attached version. If it is not what you want, please explain.