+ Reply to Thread
Results 1 to 32 of 32

search engine in excel

Hybrid View

Mrrobinson search engine in excel 06-18-2008, 10:41 PM
Mrrobinson search engine in excel 06-18-2008, 10:45 PM
shg How about Autofilter? 06-18-2008, 10:47 PM
shg Threads merged. Please don't... 06-18-2008, 10:51 PM
Mrrobinson sorry i thought i haven't... 06-18-2008, 11:58 PM
rylo Hi Will you always be... 06-19-2008, 12:40 AM
Mrrobinson make a search engine 06-19-2008, 01:37 AM
BigBas Are you sure you need a... 06-19-2008, 01:44 AM
Mrrobinson filter 06-22-2008, 10:56 PM
rylo Hi Sorry not sure I... 06-22-2008, 11:29 PM
Mrrobinson hi, yeah i wan a drop down... 06-22-2008, 11:32 PM
  1. #1
    Registered User
    Join Date
    01-14-2008
    Posts
    44

    search engine in excel

    valve type diameter price brand
    1) pneumatic butterfly 500 3200 AA
    2) hydraulic butterfly 600 3000 BB

    Above is the example of the list of price comparison for valves where the information in every row will be random and will not be categorized accordingly.

    How can i make a search engine where i key in the information for "valve', "type" and "diameter", it will list out all the prices and brands with the same information that i key in earlier.

    for example- when i key in "pneumatic, butterfly and diameter", i will get the list of the prices and brands.

    Thanks a lot

  2. #2
    Registered User
    Join Date
    01-14-2008
    Posts
    44

    search engine in excel

    ........valve.....type..diameter..price..brand
    1) pneumatic butterfly 500 3200 AA
    2) hydraulic butterfly 600 3000 BB

    Above is the example of the list of price comparison for valves where the information in every row will be random and will not be categorized accordingly.

    How can i make a search engine where i key in the information for "valve', "type" and "diameter", it will list out all the prices and brands with the same information that i key in earlier.

    for example- when i key in "pneumatic, butterfly and diameter", i will get the list of the prices and brands.

    Thanks a lot

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    How about Autofilter?

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Threads merged. Please don't post the same question twice.

  5. #5
    Registered User
    Join Date
    01-14-2008
    Posts
    44
    sorry i thought i haven't posted the thread.

    by using the advance filter i manage to filter the range and copy to another location.

    but how can i make the filtered range automatically filter when i alter the values in the criteria range instead of repeating the steps?

  6. #6
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    Will you always be using all 3 criteria to make your selections? Or could you be using 1 or any mix of the options?

    rylo

  7. #7
    Registered User
    Join Date
    01-14-2008
    Posts
    44
    i will be using 3 or more criteria to make my selection.

    thanks for your reply .

  8. #8
    Registered User
    Join Date
    01-14-2008
    Posts
    44

    make a search engine

    how do i make a search engine in excel?

    for example i will have a list of this table:

    actuator type diameter price brand
    1) pneumatic butterfly 500 3200 AA
    2) hydraulic butterfly 600 3000 BB

    i want to make a search engine where i key in 3 criteria which are the "actuator", "type" and "diameter", excel will filter the table and list out all the prices and brands with the same criteria in other columns

    thanks a lot for your reply

  9. #9
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127
    Are you sure you need a "search engine"? The built in Excel Auto Filter Feature does basically what you need to do. Is there any reason it doesn't suit your needs?

  10. #10
    Registered User
    Join Date
    01-14-2008
    Posts
    44

    filter

    i have created a sheet which will filter the database and paste the filtered data to another sheet and sort ascending the filtered data. this is the code :

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A4:F4")) Is Nothing Then
    Dim DataSH As Worksheet
    Set DataSH = Sheets("Database")
    DataSH.Range("A:M").AdvancedFilter action:=xlFilterCopy, copytorange:=Range("A9:M9"), criteriarange:=Range("A3:F4")
    Range("A10:J500").Sort Key1:=Range("J10"), Order1:=xlAscending, Header:=xlGuess, _
    OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, SortMethod _
    :=xlStroke, DataOption1:=xlSortNormal
    End If
    End Sub
    but now i want to add a scroll down bar on the criteria range, something like the autofilter, just the filtered data will paste to another sheet n automatically sort ascending then.

    can anyone help me with the code? thanks
    Last edited by rylo; 06-22-2008 at 11:11 PM.

  11. #11
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    Sorry not sure I follow. Do you want an incell dropdown, that shows a list of the unique items for a particular column, that can be applied to the criteria section?

    rylo

  12. #12
    Registered User
    Join Date
    01-14-2008
    Posts
    44
    hi,

    yeah i wan a drop down list like the one in autofilter where it will only list out the options without repeating.

    thanks for your reply

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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