+ Reply to Thread
Results 1 to 8 of 8

Dinamic search filter data table

Hybrid View

  1. #1
    Registered User
    Join Date
    03-11-2014
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    14

    Dinamic search filter data table

    Is it possible create a table like in the dample image: dynamic filtering datatable searching and "filtering" rows in which occur the text highlighted?
    Thanks
    Fransis
    Senza titolo-2.jpg
    Last edited by fransis1976; 03-13-2014 at 09:43 AM.

  2. #2
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Dinamic search filter data table

    Perhaps this is what you are looking for:
    Attached Files Attached Files
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  3. #3
    Registered User
    Join Date
    03-11-2014
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Dinamic search filter data table

    Not really
    i would like something that search (and dynamically filer) in a data table any rows that contains the "search string" in any cell.

  4. #4
    Registered User
    Join Date
    03-11-2014
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Dinamic search filter data table

    Senza titolo-3.jpg
    look at this better example

  5. #5
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: Dinamic search filter data table

    You are looking at having a VBA solution to this if it can be done. The picture indicates to me that the picture is of a worksheet with macros triggered by the buttons.

  6. #6
    Registered User
    Join Date
    03-11-2014
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Dinamic search filter data table

    May be any simple solution will be welcome.

    the picture is from
    http://datatables.net/release-datata...bootstrap.html
    not from excel
    thanks

  7. #7
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Re: Dinamic search filter data table

    Hi, go to cell F4 and enter a couple letters (eg. "al", "ha".. etc.), then press Enter. The rows will be advance filtered for any name in Column A that contains the string you entered.

    This is the code in Sheet1:
    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Not Intersect(Target, Range("F4")) Is Nothing Then
        Range("A9:C70").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:= _
        Sheets("Criteria").Range("A1:C2"), Unique:=False
    End If
    
    
    End Sub
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    03-11-2014
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Dinamic search filter data table

    Here it is...
    Hope should be useful... tell me if someone enhance this sample in some way...
    Elenco.xls

    Used Excel 2007 a short VBA code and conditional formatting take a look

    
    Private Sub TextBox1_Change()
    If Range("A1") <> "" Then
    Range("A1").Select
        Selection.AutoFilter
        ActiveSheet.Range("$C$2:$H$800").AutoFilter Field:=1, Criteria1:=RGB(247, 150, 70), Operator:=xlFilterCellColor
    TextBox1.Activate
    Else
    ActiveSheet.AutoFilterMode = False
    
    TextBox1.Activate
    End If
    
    End Sub

+ 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. move automatically data from dinamic table to static
    By Ritagi in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-13-2014, 03:52 AM
  2. Replies: 2
    Last Post: 10-07-2013, 04:57 AM
  3. Search Table - Advanced Filter/Data Validation?
    By EmilyB in forum Excel General
    Replies: 1
    Last Post: 01-12-2011, 01:35 AM
  4. Replies: 3
    Last Post: 02-04-2005, 08:06 PM
  5. [SOLVED] how to change de data base of a dinamic table
    By Lina Manjarres in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-28-2005, 09:06 PM

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