How To Create ENDLESS Dependent Drop-Down Lists in Google Sheets For Every Row

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 พ.ย. 2024

ความคิดเห็น • 259

  • @MattLennon-g2c
    @MattLennon-g2c 9 หลายเดือนก่อน +11

    Dude. You saved my bacon. Just organised my school's swimming carnival. Easiest video to follow along with by far. Thanks for all the hard work you've put in.

  • @SalmanSadiq
    @SalmanSadiq 4 หลายเดือนก่อน +4

    Nice one. A small improvement in query function could be, instead of selecting one column at a time and nameing them 'drop down 1', 'drop down 2' etc, just select all like this "select * where .... " or select what you need "select A, D, G,H ... where ... " then just select new resultant column and map this range to next dropdown.
    Plus I picked up couple of productivity tips a) instead of freezing the row from menu, just drag thick border under row 1 to where you want to freeze b) instead of adding dropdown down from menu or right click just type @ drop

  • @WowNats
    @WowNats หลายเดือนก่อน +2

    Thank you so much!!! Became an expert in 20 minutes after having lied in my resume that I was an expert on Google Sheets.

    • @HashAliNZ
      @HashAliNZ  หลายเดือนก่อน +1

      Fake it til you become it!

  • @mdhafizhasan755
    @mdhafizhasan755 ปีที่แล้ว +6

    You guy is amazing. I have been searching for this one long since, and most of the videos are giving partial solutions. Your ones have a complete package. Thanks a lot

  • @psiklone1
    @psiklone1 ปีที่แล้ว +13

    I took on something much more complicated than I initially thought as an amateur, and you made it work amazingly for me. I will be constantly adding to the sheet I was working on to make it better, but this was an amazing start. Thank you so very much.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      That's fantastic to hear, Edward! Keep on learning and improving your skills!

  • @Trade-Intuition
    @Trade-Intuition 8 หลายเดือนก่อน

    wow ... the 1:00 time stamp is GOLD ... binge watching your videos on google sheets

  • @joelencina6850
    @joelencina6850 10 หลายเดือนก่อน +1

    this is an amazing video and very helpful. in your video you populated only 2nd row, how about the suceeding row? what is Query script for the 2nd and suceeding row?

  • @lauramontoya2222
    @lauramontoya2222 ปีที่แล้ว +1

    super helpful, thanks! I'm curious if I can do this by grabbing data from another spread sheet

    • @ufktrhn
      @ufktrhn ปีที่แล้ว

      you can do it with import range

  • @beeldbuijs1003
    @beeldbuijs1003 ปีที่แล้ว +9

    Interesting technique (the split etc). However, when you need multiple levels of dependent dropdown menus, you often don't have unique far right items. If you for example have 10 types of clothes x 10 models x 5 sizes x 5 colors = 2500 items, you still get a dropdown menu that is too long, of at least 250 items, when typing an attribute.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +3

      Yeah ya gotta decide which method and tool is better for your particular data

  • @okon1624
    @okon1624 ปีที่แล้ว

    You're the best person to use an define humanitarian, for making a course like this free.
    thanks Boss.
    Watching from Nigeria.

  • @salmansahuri34
    @salmansahuri34 10 วันที่ผ่านมา

    I've been needing these videos for a long time, and finally, I found you. However, I'm facing a limitation with the number of entries in data validation-I have 84,000 rows of data. How can I solve this issue? Could you help me? Many Thanks

  • @nicolaspolsterer2961
    @nicolaspolsterer2961 ปีที่แล้ว

    i've tried to do this for hours ....... thanks for this video ! not all heroes wear capes !

  • @BRBbass
    @BRBbass ปีที่แล้ว +2

    Thank you. I've been trying to do this for several hours and tried several tutorials but yours is the only one that has worked.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Happy to help! If there's anything else you need help with, just let me know

  • @MikeThackston
    @MikeThackston 7 หลายเดือนก่อน +1

    I have an excel document that is for cabinet company. I have six tabs within the workbook. The first is the workbook, which is essently the customer pricing page. They have many options on this page to order what they would like. First, they enter the quantity in column A. Then, they choose which "Cabinet Series" they want (EconComm, Contractor, Premium, EcoGreen, Closets). Then they select the "Door Design" they want (about 10 options), then they select the "Door material" they want (30 options), then based on the prior items selected they should be able to talk to column "E" which is the "Cabinet Type" that corresponds, the select the "Cabinet Configuration" which corresponds, then enter the "Width, Height, Depth" to give them their price. I would be grateful for any ideas. Thanks.

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน

      New video coming out next week on how to do this 👍👍

  • @Aliffka555
    @Aliffka555 หลายเดือนก่อน

    The last option is so simple but so useful! Thank you!

  • @hollydurfee3214
    @hollydurfee3214 8 หลายเดือนก่อน

    I have watched so many videos and yours is the only one that made sense to me. Thank you so much!!!

  • @pameladuran2778
    @pameladuran2778 ปีที่แล้ว +2

    Thank you so much for this. I had spent hours trying yo get it done in Excel😅. Do you know if there is a way to clear the values whenever you select a different item from the drop down list? Instead of having to do it manually. I would appreciate any feedback. Thank you again!❤

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +2

      Hi Pamela, The only way to do it without just hitting the delete key is to use a script. Here's a quick example just a single row of dropdowns:
      function onEdit(e) {
      const sheet = e.source.getActiveSheet();
      const range = e.range;
      if (range.getA1Notation() === "A2") {
      sheet.getRange("B2").clearContent();
      sheet.getRange("C2").clearContent();
      }

      // Check if the edit was made to cell Q7
      if (range.getA1Notation() === "B2") {
      sheet.getRange("C2").clearContent();
      }
      }

  • @TariqMahmood-zm3ye
    @TariqMahmood-zm3ye 9 วันที่ผ่านมา +1

    thank you sir, i was loooking this for a long time

  • @deonlubbe6127
    @deonlubbe6127 10 หลายเดือนก่อน +1

    Thank you very much Hash. Do you have a list of short cuts for special characters like the arrow you used with Alt 26

    • @HashAliNZ
      @HashAliNZ  10 หลายเดือนก่อน +1

      I've never had one before, but I just whipped this one up now for you. Thanks!
      docs.google.com/spreadsheets/d/14a5ckeHhqTkBoi_MBt8u5WYCNRmxsDcOsDOXJjRvw-s/edit?usp=sharing

  • @MrKevharvey
    @MrKevharvey ปีที่แล้ว +6

    Great tutorial. Do you know of a way to create a drop down that only has options based on another cell in the same row. e.g. cell in column A has country filled in as text. Column b needs to be a drop down of cities only in that country.
    I'm trying to use this for ACC numbers showing up per patient for a physio in NZ. Great to see a fellow Kiwi on here too :)

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +1

      Kia ora Kevin! There's a couple of ways - both aren't great. First, you could create a separate list of countries and corresponding cities. Similar to what I did in the video. The problem with this is there are hundreds of thousands, maybe millions, of cities, and even with a few tens of thousands your spreadsheet will slow down considerably.
      The second way is to find a website with a list of countries and then import using importhtml or importxml. However you'll be limited to the list of cities you can find online, and unless there's a repository somewhere you're unlikely to capture every country (even wikipedia doesn't have a great list!)

  • @MrAarong4
    @MrAarong4 ปีที่แล้ว +2

    This has been a much easier to follow guide for creating dependant drop downs. Dont suppose you have any insight into how I could do the following. I am essentially creating a quoting spreadsheet based off an existing catalogue which is in my sheets - so I am looking for sheets to fetch the price that relates to all three drop-downs being correct ie ( Code > Size > Colour ) the prices exist in the catalogue I just need it to pull the single price in once the drop downs are filled
    TIA if you have an idea of this - if not also not a problem

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +1

      Yeah, absolutely. We can do that with a vlookup. Super easy in Google Sheets. Much harder in Excel. Here's an example spreadsheet, with the dropdowns in column H and the formula in column I: docs.google.com/spreadsheets/d/18PurRyWonR4l5vVn37BndS7lydCbTpGkfjn_hULx07E/edit?usp=sharing

    • @MrAarong4
      @MrAarong4 ปีที่แล้ว

      @@HashAliNZ That's awesome thank you :) I will have a play about with that and see what I can do

  • @lucdelor303
    @lucdelor303 ปีที่แล้ว

    Only one thing: YOU ARE A GENIUS .
    Thanks a lot

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Thanks so much!

  • @hanxianhooi2199
    @hanxianhooi2199 ปีที่แล้ว

    Hi It's amazing. On top of this, may I know how if I need it to be apply on every single row by using with multiple user to chosse the drop down in the same time ?

  • @TheKayShawn
    @TheKayShawn 5 หลายเดือนก่อน

    The second part of the video is a magical thing only you know Hash, AWESOME WORK!

    • @HashAliNZ
      @HashAliNZ  5 หลายเดือนก่อน

      I'm surprised how many people tell me it's a terrible system. I love it and how easy it is to search!

    • @TheKayShawn
      @TheKayShawn 5 หลายเดือนก่อน

      @@HashAliNZ most people probably are unable to set it up, I have about 10 categories and 25 subcategories with more than 100 sub-subcategories and this just made my day 100x better haha!

  • @Hermiel
    @Hermiel 10 หลายเดือนก่อน

    I use a very similar method for creating category structures for all kinds of applications. My method is a little more complex but gives me more flexibility for the kind of work I tend to do.

  • @SIOSpawn
    @SIOSpawn 10 หลายเดือนก่อน

    please in the future paste the formulas in the description

  • @mirzafarhan7883
    @mirzafarhan7883 ปีที่แล้ว

    Dear Ali Thanks for sharing such valuable technic but i have a question since i am new to Google Sheets how would you select data from another sheet? I tried many times but i am getting error. If possible please share the way of doing it .

  • @yasufumithebest
    @yasufumithebest ปีที่แล้ว

    Nice content, subscribed. I have some questions not sure you could help, is out of topic. I want to sum to value below cell but I want it to stop when it detected the empty cell and done sum up the value below the empty cell.

  • @johankallum
    @johankallum ปีที่แล้ว +1

    This was truly amazing! This brought my spreadsheet to another level.😀

  • @fromuday
    @fromuday ปีที่แล้ว

    Hi Hash, this video is very helpful.
    I have a question... My columns are dynamic, meaning that they could increase in the future. I would like to have all the column headers populated into a dropdown. Selecting a value from the dropdown, I want the rows in that column to be displayed in the adjacent cell.
    In simpler terms, let's say we have a sheet called Positions, that has columns: Position1, Position2, Position3,... They have rows such as Skill1, Skill2, Skill3, ... There is no limit to the Positions or the Skills, meaning, the table can increase bidirectionally.
    A1 has a dropdown to pick a Position. All the skills (rows) underneath this Position should be populated in B1:B.
    A3 has a 2nd dropdown to pick the 2nd Position. All the skills (rows) underneath the 2nd Position should be populated in B3:B.
    A8 has a 3rd dropdown to pick the 3rd Position, and so on...
    Dropdowns in column "A" can occur sporadic.
    Have you come across this situation and know the solution to it? Any help on this would be much appreciated.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      That sound complex! Can you share a copy of your spreadsheet and a mockup of your desired result? Share at themathlabnz@gmail.com

  • @gobindakhanal6973
    @gobindakhanal6973 3 หลายเดือนก่อน

    This is what I needed for a long time

  • @bongassociatesanalytics124
    @bongassociatesanalytics124 ปีที่แล้ว +1

    This is the best video for Dependent Drop downs in google sheets. Kudos!

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Thanks so much for the kind words!

    • @stuttgart9000
      @stuttgart9000 ปีที่แล้ว

      Superb video, so glad I found Hash, smart guy :)

  • @martinjudd952
    @martinjudd952 ปีที่แล้ว

    I loved it!!! It is exactly what I’ve been looking for in order to search on 7,000 items with 3 columns of dependents … And then I noticed it was NOT in excel. 🤦‍♂️ Is this doable in Excel or am I just S.O.L?🤢 What would you suggest? 🙏🙏🙏 Learn Sheets? 🤷‍♂️

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      While it's doable in Excel, you can't do the autocomplete for partial matches like you can in Google Sheets. Not yet, at least. There are other ways to do multiple dropdowns. Check out Leila's video here: th-cam.com/video/7mo4COng7Sg/w-d-xo.html

    • @martinjudd952
      @martinjudd952 ปีที่แล้ว

      @@HashAliNZ Leila does have a solution for an autocomplete solution but it’s only available on some versions of 365. Unfortunately my latest update is not one of them. She has a more recent solution using the filter function where the solution is transposed into one row. This allows new pull downs in successive rows. It works. And she has been so helpful, but to use multiple columns it becomes cumbersome. Your solution was so elegant and so refreshing you can imagine my disappointment to see it was in Sheets. Oh sheet!!! So many improvements over Excel I may have to learn to do some new Sheet!😎 thank you so much for the quick response. 🙏🙏🙏

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      @@martinjudd952 Well if you do make the shift, you know where to find me for help!

    • @martinjudd952
      @martinjudd952 ปีที่แล้ว

      @@HashAliNZ ❤️ Yes I do!!

    • @martinjudd952
      @martinjudd952 ปีที่แล้ว

      My son loves Kiwi’s, always so helpful 😉

  • @onjadar
    @onjadar 8 หลายเดือนก่อน

    This is soo cool. Thank you. Subscribed!

  • @GüzinKöklüSezer
    @GüzinKöklüSezer 10 หลายเดือนก่อน +1

    how can we do this if our data is in report format not tabular format?

  • @afiesty12
    @afiesty12 10 หลายเดือนก่อน

    This is super helpful. Thank you for sharing this.

  • @viktoriiavitko7296
    @viktoriiavitko7296 7 หลายเดือนก่อน

    Great tutorial! But what if you had cities in the rows instead of columns. Like F2: China, G2: Beijing, H2: Shanghai etc; F3: Japan, G3: Tokio and so on. Would that be possible to make such drop-downs without reformatting the categories
    Thank you!

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน

      You'd need a helper column using the transpose function to turn them from cols to rows

  • @DaniilBohatyr
    @DaniilBohatyr 8 หลายเดือนก่อน +1

    Hi, good video, but it hasn't solved my challenge. Is there a way to scale the first method and make the same conditions for a multiple rows for both drop-downs? I have a category and subcategory of the products, and I need each cell to display the same values. The second method doesn't work in this case, unfortunately.

    • @HashAliNZ
      @HashAliNZ  8 หลายเดือนก่อน +1

      There is multiple methods to do this, but my video on it isn't finished. My plan is to have it uploaded on April 1st. It's a bit too long to go into detail in a TH-cam comment, unfortunately.

  • @SaraLaidlawASBINC
    @SaraLaidlawASBINC ปีที่แล้ว +7

    I had to give up Excel for Google Sheets for one simple feature. Searchable dropdowns. Excel is still clicking/scroll. Unreal.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      There is a way to have searchable dropdowns in Excel, but oh man it's complicated!

  • @hamiltonlucasnsimbi1975
    @hamiltonlucasnsimbi1975 10 หลายเดือนก่อน

    Dude your a life save

  • @MericurialKay
    @MericurialKay 9 หลายเดือนก่อน

    Thank you for this amazing explanation and video! :)

  • @gilson7959
    @gilson7959 11 หลายเดือนก่อน

    This help me a lot! Thank you!!

  • @gadd99
    @gadd99 ปีที่แล้ว +1

    Nice video. Is it possible to make it where you select a country FIRST and then continent automatically fills up? Kind of reverse but while still maintaining the same structure or order of dropdowns.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Yeah, you can put it in any order you want - just change it up however works for you. Usually we do continent first, then country because a country lies within a continent. Start big, go small.

    • @gadd99
      @gadd99 ปีที่แล้ว

      ​@@HashAliNZ Thanks for the reply, but I had something different in mind. Is there a way to make it so where you can have both happen at the same time - you can click on the left most column to find a match on the right; OR click on right column to find a match for the left column? This is something I am interested in this because I have products and descriptions and I am looking for a way that someone can dropdown a product and description matches and vice versa - can click on description dropdown to match a product.. (basically while just using two dropdowns) Not sure if I make sense here..

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      @@gadd99 do you mean like a product name in one cell and a sku in the other?

  • @teamcarevn
    @teamcarevn ปีที่แล้ว

    Many thanks for your video. I have a little problem in the front row it works fine but from row A3 onwards it doesn't work. Please give me the solution. Thank you

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hiya! Which part doesn't work? Is it not showing the dropdown boxes or is it the split formula that's not working out?
      If you're using the first method, that's not really designed to work for multiple rows - that's where the second method dominates!

  • @alinajenon
    @alinajenon 6 หลายเดือนก่อน

    This was so helpful and so easy. Thank you!

  • @joeypelerine133
    @joeypelerine133 7 หลายเดือนก่อน

    Great video! Is there a way to create multiple drop downs as you continue to each column? EX: I choose a "Parent asset" in column A dropdown list. It would then populate in column B, multiple drop downs for every child asset associated with chosen Parent asset in from column A. The Child assets in Column B are now Parent assets to multiple drop downs in column C.

    • @joeypelerine133
      @joeypelerine133 7 หลายเดือนก่อน

      Continent Country
      Country
      Country City
      City
      City
      City
      Country
      Continent
      Hope this gives a better visual. Looking for every cell to be a drop down that expands as you keep going to the next column.

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน +1

      Absolutely. Check it out here: th-cam.com/video/VQTrwc-eMVk/w-d-xo.htmlsi=Rvgy1bnk6pAiYZGU

  • @MrDhiman
    @MrDhiman ปีที่แล้ว

    Great work..... but how that 1st type of dependent dropdown work on the below let say 20 rows. I am unable to figure out kindly explain.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +1

      Hey Mr.Dhiman! The first method isn't really designed to work for many rows. That's where the second method dominates!

  • @JCHK
    @JCHK 7 หลายเดือนก่อน

    this is the best solution, thanks a lot!

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน

      You're welcome. And if you're wanting the more traditional dependent dropdowns, that video is coming next week

  • @c.parizeault4793
    @c.parizeault4793 ปีที่แล้ว +1

    Hello, I made a dropdown list dependent on another one. However, when I change the value of the first list, the selection in my second list stays on my old selection. How to solve this problem and make the second list automatically update or delete itself when the value of the first list is changed? I see that an invalid message appears in yours, how to display the invalidity?

  • @deymacias
    @deymacias 5 หลายเดือนก่อน

    great video. Does anyone know how to reset the dependent drop-down list when the initial one is set to a different value?

    • @HashAliNZ
      @HashAliNZ  5 หลายเดือนก่อน

      Hey! This will require a script. My next video, which is almost done editing, is going to show exactly how to do this. Hopefully get it out in the next few days!

  • @vivienneandrews5684
    @vivienneandrews5684 ปีที่แล้ว

    Amazing, I love your instructions, very clear.

  • @dinochavda5480
    @dinochavda5480 ปีที่แล้ว

    hey mate. Do you have a demo of how to do the first method, but by using data from another sheet within the same file?

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Here you go: docs.google.com/spreadsheets/d/1f_k0hC0cnS0QMcp7l8KLBBKShCXBy2o7oRLIMThuMR8/edit?usp=sharing

  • @JennTurner-4asl
    @JennTurner-4asl 4 หลายเดือนก่อน

    Is there a way to sort by drop down status? I want "follow up" drop down status to be priority in my list.

  • @KhripunovSA
    @KhripunovSA 5 หลายเดือนก่อน

    LOL, Yekaterinburg)))) you did you pretty good!

  • @mottep.
    @mottep. 7 หลายเดือนก่อน

    Love it. My problem is solved. Thanks.👍👍

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน

      Fantastic! There's also another method shown here if you want something different: th-cam.com/video/VQTrwc-eMVk/w-d-xo.htmlsi=cG60UpXna8gYuoBF

  • @estebansuarezcastro7053
    @estebansuarezcastro7053 11 หลายเดือนก่อน

    Save my day. Thank you so much!

  • @RockAGoth
    @RockAGoth 5 หลายเดือนก่อน

    So I’m making a database for a wardrobe with about 1500 items. The drop downs help me out greatly and some of the clothing categories have sub categories. Do I need to make a separate query for each item? At that point I’d be better off typing it out. Everything in the subcategory is just going off the one query we did.

    • @RockAGoth
      @RockAGoth 5 หลายเดือนก่อน

      I think i figured it out I’ll just have multiple columns instead of one column of subcategories thanks!

  • @adityadeshmukh4972
    @adityadeshmukh4972 19 วันที่ผ่านมา

    this is the best tutorial :)

  • @elvietrasonapetrache-padua2989
    @elvietrasonapetrache-padua2989 ปีที่แล้ว

    Thank you for sharing this. I need this so much at work.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      You're very welcome!

  • @quraanrecitation7811
    @quraanrecitation7811 8 หลายเดือนก่อน

    can you make this in MS-Excel except google sheet

  • @CarolynQui
    @CarolynQui ปีที่แล้ว

    This is good - I have 20 High Schools, 20 Middle Schools, 26 Elementary Schools
    Does the formatting of the columns change?

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hi Carolyn,
      Your first column should be the 'type', in this case the type of school (e.g., 20 rows of "High School", 20 rows of "Middle School", and 26 rows of "Elementary School".
      Your second column should be the name of the school.

  • @gulanman
    @gulanman ปีที่แล้ว

    This is what I'm looking for, but there's something I need to add that sheet link to the Google form. Please advise.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hey! To add a Google Form, you can either link directly to the spreadsheet you're working on, or you can create a new spreadsheet and use importrange. It all depends on your current structures

    • @gulanman
      @gulanman ปีที่แล้ว

      @@HashAliNZ You created a '@dropdown' cell linking country to city right. So Can the same dropdown be shown for item lists in a Google form? I want to select a country and show relevant lists of cities in the Google form. Please help

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hi @@gulanman, unfortunately no. The only way to do that in Google Forms is to use conditional logic. So when you create a dropdown list of countries, you'll then add a new section for each country and then in that new section list out all the relevant cities. It's a huge pain. A better option, depending on how you're using the form would be creating something with AppSheet using the _isValid feature

  • @peterpan-hg8fs
    @peterpan-hg8fs 4 หลายเดือนก่อน

    ohhh.... woooowwww thanks man.. problem solved!!! i will recommend you..

  • @kevinchristensen864
    @kevinchristensen864 7 หลายเดือนก่อน

    This video is great!

  • @JuanSilva-f6v
    @JuanSilva-f6v ปีที่แล้ว

    Hello! Thanks for your video-very helpful! I got it to work perfectly, however, I have a list with various inputs (rows) and each row has a different, let’s say, “Country” and “City.” When copying the formula down, values in the “City” drop-down don’t change since the formula you suggest is referenced to whatever the value is in B2 which is, for all intents and purposes, fixed. How can you make the list so that this value automatically changes as you select other “Countries” as you go down your list? I hope the question makes sense. Thanks!!!

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +2

      Sorry I'm not sure I follow. Can you share a sample of your spreadsheet?

    • @stefangiezendanner7047
      @stefangiezendanner7047 ปีที่แล้ว +1

      Hi. I am still using excel (data validation - list - Indirect, because did not find a way to do:
      - two dependent drop downs
      - About 10 categories and around 3-10 subcategories for each categories
      - would need this for about 2000 rows. In google sheet only found how to do with one row
      Any suggestion how to achieve this?

    • @AnkitYadav-cl5ys
      @AnkitYadav-cl5ys 11 หลายเดือนก่อน

      @@stefangiezendanner7047 I also want the same, Have you found the solution?

  • @gaukala22
    @gaukala22 6 หลายเดือนก่อน

    Hi, I've watched this so many times!! I just have a small problem, when I create the query, it only show me one of the names in column G. If I change the value in the first dorp down menu the query sometimes changes to the first word on G matching the one in F. Not all the time and it doesn't show me all the results it should.. I don't know if I made myself clear or if you can help me with this

    • @HashAliNZ
      @HashAliNZ  5 หลายเดือนก่อน

      Sorry, I'm not quite sure what you mean. Feel free to send me an email with the spreadsheet link to themathlabnz@gmail.com and I can take a look

  • @BiswadeepMukherjee-w9i
    @BiswadeepMukherjee-w9i ปีที่แล้ว

    Thanks..It helped me a lot

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Glad it helped

  • @slybesker
    @slybesker 10 หลายเดือนก่อน

    Sadly, when accessing google tables from mobile phone, its not searching the row, only if you write starting with first letters of entire row

  • @alipioneto9531
    @alipioneto9531 ปีที่แล้ว

    Your video is amazing! Congratulations for that!! But I need your help I already spent more than 3 hours trying to replicate this formula in a simple spreadsheet but seems like I’m not able to replicate the formula for other lines below, is that right? In your first exemple you use the B5 cell as reference, but when I’m try to use the drop-down on cell B3 the selection on C3 keeps being dependent on B2 instead of B3, could please help me?

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hi Alipio, Do you mean applying the dropdown list to lots of rows like at 11:20? The only thing that needs to be changed is the Apply To range

  • @john1802
    @john1802 11 หลายเดือนก่อน

    Great tutorial. Thank you very much

  • @GeorgeKoenig-bh6eh
    @GeorgeKoenig-bh6eh 5 หลายเดือนก่อน

    Awesome, thank you!

  • @EmmanuelEvangelista-r4b
    @EmmanuelEvangelista-r4b ปีที่แล้ว

    Is it possible to use a combination of multiple dependent dropdown lists and query function?

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hmmm I've never tried, but I don't see why not!

  • @DeLangdrums
    @DeLangdrums หลายเดือนก่อน

    What if you want to add a dropdown within a formula where you used index and matched to a dropdown?

    • @HashAliNZ
      @HashAliNZ  หลายเดือนก่อน

      You might need to use some textjoins and splits to get that work efficiently. But there's a thousand ways to do things in Google Sheets, so I'd need more info for your case.

  • @alexmoreno7275
    @alexmoreno7275 ปีที่แล้ว +1

    This is just what I need. Thank you.

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Happy to help!

  • @aqqqq5357
    @aqqqq5357 11 หลายเดือนก่อน

    This is really cool

  • @pappafritto
    @pappafritto ปีที่แล้ว

    this is a good solution for making endless lists, but i am looking for something that can run an sql that depends on the cell on the left

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว +1

      Google Sheets has its own SQL language using the QUERY function. Referencing something within a query would look like this if it's text in the cell:
      =QUERY(A2:F, "Where C = '"&L2&'")
      or like this if is a number in the cell:
      =QUERY(A2:F, "Where C = "&L2&")

    • @pappafritto
      @pappafritto 11 หลายเดือนก่อน

      @@HashAliNZ thank you for the answer! I had discovered this function after a while

  • @sajinj2457
    @sajinj2457 ปีที่แล้ว

    Really helpful and good explanation. I subscribed your channel 😊

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Thanks so much, Sajin!

  • @TariqMahmood-zm3ye
    @TariqMahmood-zm3ye 9 วันที่ผ่านมา

    I Want to use on 100 line the same dependent drop down how i Can?

  • @Ryuzanandfriends
    @Ryuzanandfriends 5 หลายเดือนก่อน

    is it possible that we can copy the dropdown menu's of B2 and C2 shown at 4:44 into another sheet and achieve the same outcome? please help.

  • @johnmtconnolly
    @johnmtconnolly ปีที่แล้ว

    Super helpful!

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Glad it was helpful!

  • @quraanrecitation7811
    @quraanrecitation7811 7 หลายเดือนก่อน

    i need 2 dropdowns depending on 1 dropdown, for example i make 1 dropdown with iphone x, then next two dropdown should show depend on 1st dropdown

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน

      Right here, bud: th-cam.com/video/VQTrwc-eMVk/w-d-xo.html

    • @quraanrecitation7811
      @quraanrecitation7811 6 หลายเดือนก่อน

      @@HashAliNZ not in google sheet, need it in excel

    • @HashAliNZ
      @HashAliNZ  6 หลายเดือนก่อน

      @@quraanrecitation7811 Cool, check out an Excel channel 👍🏼

  • @DejanMincic108
    @DejanMincic108 ปีที่แล้ว

    Wow nice tutorial on drop downs. Thank Hash!

  • @DPortal17
    @DPortal17 ปีที่แล้ว +1

    Super helpful! thnx a million bro

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Always happy to help, Rami!

  • @ecommerceimar
    @ecommerceimar 7 หลายเดือนก่อน

    why if I need this dynamic validation to all row? not only in 1 row?

    • @HashAliNZ
      @HashAliNZ  7 หลายเดือนก่อน

      It does apply to all rows..

  • @pseudoforce
    @pseudoforce 5 หลายเดือนก่อน

    What if I want to have multiple roles with these drop downs? I can't just drag because then it copies the previous one.

    • @HashAliNZ
      @HashAliNZ  5 หลายเดือนก่อน +1

      The second half of the video shows how to have multiple rows, or you could check out this video: th-cam.com/video/VQTrwc-eMVk/w-d-xo.html
      I've got a third method that uses script coming soon. It's just in the final stages of editing

    • @pseudoforce
      @pseudoforce 5 หลายเดือนก่อน

      @@HashAliNZ thank you so much! I think my adhd kicked in 😅

  • @LocsLuxeCurves
    @LocsLuxeCurves 6 หลายเดือนก่อน

    Is there not a way to have multiple drop downs read from the same query formula?

    • @HashAliNZ
      @HashAliNZ  6 หลายเดือนก่อน +1

      No, not with this method. I've got a different method that will do it here: th-cam.com/video/VQTrwc-eMVk/w-d-xo.htmlsi=94cfmVgjpsREebpE

  • @CarolynQui
    @CarolynQui ปีที่แล้ว

    This is exactly what I need, but I need it for the High School, Middle Schools, Elementary Schls

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Perfect! Should work with just two columns

  • @tomwoodcraft_gfx
    @tomwoodcraft_gfx 4 หลายเดือนก่อน

    are there any heroes out there ? been struggling for an elegant solution....have a sheet with several drop down columns, im trying to make it simple for clients and other users of the doc to filter what is relevant to them, ideally without removing the other data, just re ordering it , for example a designer that just wants to see the tasks assigned to them , is it possible to create a dropdown where they select their name and it filters it ? drop-down or search boxes are great... basically anything that doesnt require any knowledge from the user, ANY help warmly welcomed

    • @HashAliNZ
      @HashAliNZ  4 หลายเดือนก่อน +1

      Hey Tom, there's a couple of ways in Google Sheets. One is to use Filter Views. I don't have a video specifically on this, but I show off the basics in the video about Structured Tables.
      The other option is to create a Looker Studio page that links directly to your Google Sheets data.

    • @tomwoodcraft_gfx
      @tomwoodcraft_gfx 4 หลายเดือนก่อน

      @@HashAliNZ thank you!

  • @panchaljignesh88999
    @panchaljignesh88999 ปีที่แล้ว

    thanks This made my work so much easy...

  • @RebekahAdams-u4z
    @RebekahAdams-u4z ปีที่แล้ว

    Do you have advice for if the second drop down list is pulling more data than its supposed to. So for example, If I have Asia selected, and the 1st drop down list formula gives me Japan, china & Korea. (which is correct) But then the second drop down list for the cities once I select Japan is showing me Tokyo, Seoul, and Beijing. And not just Tokyo as it should be, in essence it's disregarding that I've selected one county. Any advice/ problem solving is appreciated!! I got it to work the first time but every other time I'm getting this glitch..

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      That is strange! Are you using the first or second method shown in the video?

  • @ufktrhn
    @ufktrhn ปีที่แล้ว

    Damn. this is gold

  • @ayoubessaki5293
    @ayoubessaki5293 5 หลายเดือนก่อน

    i needed just the first dropdown list but i have to make a dropdown query for each vertical dropdown list, Understand ?

    • @HashAliNZ
      @HashAliNZ  5 หลายเดือนก่อน

      Sorry, I'm not quite sure what you mean. Can you expand a bit?

  • @LocsLuxeCurves
    @LocsLuxeCurves 6 หลายเดือนก่อน

    My question is I followed all of your steps and I was able to successfully have functioning drop down list, but the little red arrow still shows in the cell and it states, "Invalid: Input must fall within specified range" but the list are correct, what am I missing, why is that still there and will it cause issues later if I keep it?

    • @HashAliNZ
      @HashAliNZ  6 หลายเดือนก่อน +1

      Heya, This will only happen if the dropdown range doesn't include the value you've selected. It's hard to tell why this might be happening since you say your list is correct, so feel free to share the file with me and I can take a look.

    • @LocsLuxeCurves
      @LocsLuxeCurves 6 หลายเดือนก่อน +1

      @@HashAliNZ thank you, I actually figured it out. I had to format the cells to plain text instead of automatic

  • @ivandimitrijevic4619
    @ivandimitrijevic4619 ปีที่แล้ว

    Many Thanks, best video on the subject!

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Glad it was helpful!

  • @maanNL
    @maanNL หลายเดือนก่อน

    Why do i need to write ; instead of , ? Only with ; does the code work with me.

  • @petermarsh2174
    @petermarsh2174 ปีที่แล้ว

    I am trying to add if formulas in another coloumn based on city but am unable to capture the trigger city
    any ideas please

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      Hi Peter, Can you share what you've got so far?

    • @petermarsh2174
      @petermarsh2174 ปีที่แล้ว

      @@HashAliNZ docs.google.com/spreadsheets/d/1olLzoriP-l7Of8d_WEX-dQWlrT1V_QhLyUexL1bXzYE/edit?usp=sharing
      USD → only plans wanting to get E3 working
      Thanks

    • @petermarsh2174
      @petermarsh2174 ปีที่แล้ว

      Hi Mate did you have any luck with what could be going on in this spreadsheet for it not to work.
      @@HashAliNZ

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      @@petermarsh2174Can you share your spreadsheet? Feel free to email it to me at themathlabnz@gmail.com and I can take a look

  • @NeerajAgarwal
    @NeerajAgarwal ปีที่แล้ว +1

    This is amazing. Thank you for sharing. :)

    • @stanleypaul1381
      @stanleypaul1381 ปีที่แล้ว +2

      wowza!!!...never thought I would find the Pabby wizard here in the commet section!
      And didn't know you were also on a look out for a solution to this problem. I had the same requirement and solved it with Apps Script. Check comments for the google forum link.

  • @luizfernandosp
    @luizfernandosp 4 หลายเดือนก่อน

    the only problem in the traditional way, if you want to do the dropdown list in another row the query won't do anything because that list is using if only one cell is set. How to replicate to other rows?

    • @HashAliNZ
      @HashAliNZ  4 หลายเดือนก่อน +1

      That's when you use one of the other methods. Here's one: th-cam.com/video/c8hU9IuS0VA/w-d-xo.html
      And here's another: th-cam.com/video/VQTrwc-eMVk/w-d-xo.html

    • @luizfernandosp
      @luizfernandosp 4 หลายเดือนก่อน

      @@HashAliNZ I used the second method of this video, once is only for a monthly budget, nothing complex, but I understood the explanation of both videos with script and the other doing tab by tab, it's a big work if you need something more professional. I'm subscribing on your channel because I can find anything about Google sheets here hehhe, tks.

  • @vinaykumargorli9987
    @vinaykumargorli9987 ปีที่แล้ว

    Thank you for this information 🎉

    • @HashAliNZ
      @HashAliNZ  ปีที่แล้ว

      My pleasure 😊

  • @thevaliantrebel4338
    @thevaliantrebel4338 5 หลายเดือนก่อน

    Can i do this on excel ?

    • @HashAliNZ
      @HashAliNZ  5 หลายเดือนก่อน

      Not this version, but you can totally do dependent dropdown lists in Excel. I don't have a tutorial for that, unfortunately, because I do Google Sheets. But if you search for "Dependent Dropdown Lists in Excel" there are plenty of tutorials out there