+ Reply to Thread
Results 1 to 10 of 10

Searchable dependent lists

Hybrid View

  1. #1
    Registered User
    Join Date
    12-18-2021
    Location
    Barcelona, Spain
    MS-Off Ver
    MS Office 365
    Posts
    12

    Searchable dependent lists

    Hello,
    I am trying to make a kitchen cost sheet with two dependent lists and a search engine, so far I have managed to make both lists but I cannot make one dependent on the other.

    Although all the data (supplier and product) are in the Product List sheet, I have used the UNIQUE function in the Supplier List sheet to eliminate the duplicates that appeared in the drop-down.

    I would appreciate any help/advice.

    Cheers

    Sample Costings 2.xlsb

  2. #2
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,410

    Re: Searchable dependent lists

    see if this approach is acceptable - there are no on-sheet formula or hidden data validation - it is all done by a macro triggered by the worksheet_change event.
    both the data source and 'Plantilla Coste' are in 'structured tables' if you click in 'A10' a combobox appears for your first selection - it moves to 'B10' to give you a relevant selection then fills the next 3 columns.
    to expand the table put any character in 'A11' - move to 'B11' - then back to 'A11' your table has dynamically expanded and the combobox sequence is again available - do not expand the table with blank rows.
    Attached Files Attached Files
    Torachan,

    Mission statement; Promote the use of Tables, Outlaw the use of 'merged cells' and 'RowSource'.

  3. #3
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Searchable dependent lists

    I generally solve this kind of problem with pivot tables.

    The pivot table sheet has two tables built off TablaProducto.

    The first pivot table gets a unique list of providers in the table. The second pivot table gets a list of products associated with the selected provider.

    These are overlaid with named dynamic ranges.

    Lista_Proveedor =OFFSET(Pivot!$A$4,0,0,COUNTA(Pivot!$A:$A)-1,1)
    Lista_Referencia =OFFSET(Pivot!$C$4,0,0,COUNTA(Pivot!$C:$C)-2,1)

    These are defined in Formulas > Name Manager

    The offset command has 5 arguments.
    - Start here
    - Go down these many rows
    - Go right these many columnsw
    - Return a range x rows deep and y rows wide.

    So =OFFSET(Pivot!$A$4,0,0,COUNTA(Pivot!$A:$A)-1,1) means
    - start in cell A4
    - go zero cells down
    - go zero cells to the right
    - Give me a range, COUNTA(A:A) - 1 rows deep (we do not want to count the header) and 1 column wide.

    Dynamic ranges shrink and grow with the data.

    Then on the Plantilla Coste sheet, I established an On Cell Selection event on column B. When you select a cell in the range B10:B29, the code is run. The code looks at the provider in column A and does some checking to see if that supplier exists in the database. If it doesn't (as when the cell is blank), then you get an error message. Otherwise, it sets the filter on the second pivot table. This changes the values in the second named dynamic ranges.
    Attached Files Attached Files
    One spreadsheet to rule them all. One spreadsheet to find them. One spreadsheet to bring them all and at corporate, bind them.

    A picture is worth a thousand words, but a sample spreadsheet is more likely to be worked on.

  4. #4
    Registered User
    Join Date
    12-18-2021
    Location
    Barcelona, Spain
    MS-Off Ver
    MS Office 365
    Posts
    12

    Re: Searchable dependent lists

    Thank you very much for your answers.

    I have updated de tables with all the data and it works like a charm. The only issue a have is that there are 200 suppliers and almost 8000 products and it will be most helpful to add a search function to the dropdown list.

    I was able to do it myself on the previous sheet with the following formula:

    =TRANSPOSE(SORT(FILTER(TablaProducto[REFERENCIA],ISNUMBER(SEARCH('Plantilla Coste'!B10,TablaProducto[REFERENCIA])),"NOT FOUND")))
    Any idea on how I could approach this issue?

    Thank you very much
    Last edited by ray1975; 02-18-2023 at 05:05 PM.

  5. #5
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Searchable dependent lists

    I managed to build some code on top of the code I already provided.

    Now when you select a cell in Column A a form pops up like the one shown in the image. In the first cell, enter the pattern you would like to match. This can be any of the recognized wildcards. So A*B?? will match anything that starts with A has zero or any numbers of characters followed by a B and two random characters.

    Click on the Encontrar Button and the List box is filled out with providers that match the pattern.

    Select the one you want, and click on the A la celda Button. This will fill in the cell with the selected provider.

    Salida exits the form without taking any action and Despejar clears the cell's contents.

    Please excuse any badly labeled items. My knowledge of Spanish is very limited and I am relying on Google translate. If any corrections are needed, please point them out and I will make the adjustments.
    Attached Images Attached Images
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    12-18-2021
    Location
    Barcelona, Spain
    MS-Off Ver
    MS Office 365
    Posts
    12

    Re: Searchable dependent lists

    Thank you very much for your help and I hope you excuse my basic English as well!

    I've been working on the sheet lately and I've managed to make it work.

    I created a tab called Datos which displays the data from the pivot table so I can use it to fill the form.
    The only issue is that when I click on Proveedores the following message appears highlighting this line:

    ' Refresh the pivot tables
    shtP.PivotTables("Pt_referencia").PivotCache.Refresh
    Run-time error 1004. We couldn't complete the action for PivotTable" PT_proveedor" in "pivot" because there's already a PivotTable"Pt_referencia" there. Make space and try again.


    Still works though but I can't get rid of the message.

    COSTES FINAL filter merma v2 macro.xlsb

  7. #7
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Searchable dependent lists

    You changed the name of the column containing the information. So when you refreshed the pivot table, it came up with a blank pivot table which takes several columns by default, so the blank table was trying to overlap the table next to it.

    I fixed this in this version.

  8. #8
    Registered User
    Join Date
    12-18-2021
    Location
    Barcelona, Spain
    MS-Off Ver
    MS Office 365
    Posts
    12

    Re: Searchable dependent lists

    Hi dflak, sorry but I can't see the fixed version
    Cheers!

  9. #9
    Forum Expert dflak's Avatar
    Join Date
    11-24-2015
    Location
    North Carolina
    MS-Off Ver
    365
    Posts
    7,957

    Re: Searchable dependent lists

    Let's try again!
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    12-18-2021
    Location
    Barcelona, Spain
    MS-Off Ver
    MS Office 365
    Posts
    12

    Re: Searchable dependent lists

    It's just perfect. Thank you ever so much for your time!

+ 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. Multiple dependable searchable drop down lists
    By Ma.Sa. in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-13-2021, 01:29 PM
  2. Searchable drop-down lists, no VBA
    By LostinVA in forum Excel General
    Replies: 5
    Last Post: 01-14-2020, 07:26 PM
  3. Make Dependent Drop Box Searchable
    By DawnA530 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-19-2018, 05:45 PM
  4. Searchable Data Validation Lists
    By MrExcel1991 in forum Excel General
    Replies: 1
    Last Post: 09-14-2018, 12:57 PM
  5. Vlookup --- Searchable Drop Down Lists
    By viber52 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 06-25-2015, 07:10 PM
  6. Searchable dependent drop-down list
    By banaanas in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 01-22-2015, 02:58 PM
  7. searchable dropdown lists
    By pblenis in forum Excel General
    Replies: 2
    Last Post: 07-11-2006, 02:00 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