Results 1 to 4 of 4

filter data using list of cell value (contains)

Threaded View

boss1982 filter data using list of... 11-13-2014, 07:12 AM
boss1982 Re: filter data using list of... 11-13-2014, 04:03 PM
boss1982 Re: filter data using list of... 11-14-2014, 03:57 PM
boss1982 Re: filter data using list of... 11-17-2014, 08:04 AM
  1. #1
    Forum Contributor
    Join Date
    12-20-2012
    Location
    Qatar
    MS-Off Ver
    Excel 2010
    Posts
    171

    filter data using list of cell value (contains)

    hi,

    i am trying to modify the following code to let me filter the list in sheet2 with contain not as the whole value in the cell

    for example if the cell A2 = a and Cell A3 = aa...when i filter "*a*" will be both as a result.

    
    Option Explicit
    Sub Filter_Using_Criteria_List()
        '''''Variables Declacaration
        Dim Criteria_Val(100) As String
        Dim iRow As Integer
     
        '''''Loop Thru the List and Create Criteria List in String Array
        iRow = 0
        While Sheets(2).Cells(iRow + 1, 1) <> ""
            Criteria_Val(iRow) = Sheets(2).Cells(iRow + 1, 1)
            iRow = iRow + 1
        Wend
     
        '''''Criteria List is Created. Pass it as parameter to Filter
        Sheets(1).Range("A1:A20").AutoFilter Field:=1, Criteria1:=Criteria_Val, Operator:=xlFilterValues _
        , Operator:=xlOr
    
    End Sub
    thanks.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. best way to filter and extract data from large data list
    By boltonlad2k in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-19-2014, 11:26 AM
  2. Replies: 0
    Last Post: 01-16-2014, 10:55 AM
  3. Synchronisation of Validation list of one cell with filter list of other column
    By ac1989 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-31-2012, 05:19 AM
  4. Replies: 2
    Last Post: 06-03-2012, 03:33 PM
  5. Filter Data validation List
    By sakinen in forum Excel General
    Replies: 1
    Last Post: 07-05-2010, 08:03 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