+ Reply to Thread
Results 1 to 3 of 3

Filtering Multiple Text Strings in Column

  1. #1
    Registered User
    Join Date
    06-04-2020
    Location
    Toronto, Ontario
    MS-Off Ver
    2016
    Posts
    20

    Filtering Multiple Text Strings in Column

    I would like to filter out the items that contain WLM or CLOUD in the following chart and display only the rows that contain these.

    Any function that can filter out this text?

    Thanks.
    Attached Images Attached Images

  2. #2
    Valued Forum Contributor Eastw00d's Avatar
    Join Date
    02-29-2020
    Location
    Breda, NL
    MS-Off Ver
    2016, 2019
    Posts
    833

    Re: Filtering Multiple Text Strings in Column

    You can use a standard filter using ?L* since L is what cloud and wlm have L in common as second letter.

    Cheers
    Erwin
    I started learning VBA because I was lazy ...
    Still developing.... being more lazy...

  3. #3
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Filtering Multiple Text Strings in Column

    You could use the following array formula that finds if each string contains either WLM or CLOUD and then creates an array of valid row numbers. Using SMALL floats the valid row numbers to the top and the invalid rows to the bottom, and then simply use INDEX to spit out what is contained in each valid row.

    =IFERROR(INDEX($A$2:$A$6,SMALL(IF(ISERROR(IFERROR(FIND("WLM",$A$2:$A$6),FIND("CLOUD",$A$2:$A$6))),"",ROW($A$2:$A$6)-1),ROW()-1)),"")

    As this is an array function, you have to press Ctrl-Shift-Enter to engage that functionality (you can google how to do this).

    I have attached a sample spreadsheet.

    Hope this helps.
    Attached Files Attached Files
    Last edited by loginjmor; 06-04-2020 at 03:45 PM.
    ____________________________________________
    If this has solved your problem, please edit the thread title to add the word [SOLVED] at the beginning. You can do this by
    -Go to the top of the first post
    -Select Thread Tools
    -Select Mark thread as Solved

    If I have been particularly helpful, please "bump" my reputation by pressing the small star in the lower left corner of my post.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Find Multiple Text Strings in Column, return the 9 cell strings below
    By BoExcels in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-05-2019, 09:56 AM
  2. [SOLVED] VBA script to filter column with multiple text strings
    By Metrazal in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-28-2014, 08:59 AM
  3. Counting Multiple Text Strings in the Same Column?
    By MurasakiK in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 09-24-2013, 07:21 PM
  4. [SOLVED] Need to extract text from within multiple strings and arrange it in a single column
    By sampflederer in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-10-2013, 01:35 PM
  5. Replies: 1
    Last Post: 12-20-2012, 04:18 PM
  6. Replies: 3
    Last Post: 06-06-2012, 01:44 PM
  7. Filtering a Column for Multiple Text Strings
    By Dynamo418 in forum Excel General
    Replies: 0
    Last Post: 09-21-2011, 11:27 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1