Google Sheets - Dependent Dropdown List for Entire Column - Apps Scipt, Match Alternative - Part 2

Поділитися
Вставка
  • Опубліковано 28 лис 2024

КОМЕНТАРІ • 187

  • @mreighties2860
    @mreighties2860 6 років тому +33

    I don't know if I ever added a comment but in case I didn't I want to say this is by far the best script for "Dependent Dropdowns". I am a Top Contributor for Sheets at the Google Product Forums and I have helped many users adapt their sheets to use this script and also point them to these videos showing them where I got the script as it is a really good source to learn GAS.
    Thanks ever so much for providing this and I know it has (and will) helped a lot of people.
    James/mreighties :)

    • @alex.p2857
      @alex.p2857 5 років тому

      Hi James,
      Could you help me)
      I would like to ad two dependent dropdown lists in one sheet, how could i modify this script to get that?
      Thanks a lot

    • @engmohammed123456
      @engmohammed123456 5 років тому

      Alexandru Pușcaș
      Hello
      I have the same problem
      Did you solve it ?

  • @ExcelGoogleSheets
    @ExcelGoogleSheets  7 років тому +9

    Correction: as mentioned in one of the comments by Derek Morgan it's also necessary to make sure the script runs only on the Main tab, so if statement needs to be modified to
    if(activeCell.getColumn() == 1 && activeCell.getRow() > 1 && ss.getName() == "Main"){

    • @FirasAlOtaibi
      @FirasAlOtaibi 5 років тому

      So can we have the same script used for different tabs?

  • @tannerlabelle
    @tannerlabelle 7 років тому +10

    This helped me out a ton. I was able to use this script for a personal training program. Where you select the body part you want to exercise and then the second drop-down menu is exercises that use that body part.

  • @dktudu
    @dktudu 4 роки тому

    Bhai, Luv 4m India. May God bless u. I am a Govt. Servant and ur tips helped me a lot for real-time information tracking/gathering during COVID-19. Keep it up. Thank You very much.

  • @patrickfast3996
    @patrickfast3996 2 роки тому

    Wow! Problem solved so elegantly. I have little to no App Script experience and was able to apply this solution swiftly. And I love the edit recommended to apply across multiple sheets, which worked great. I'm no a convert

  • @santosahernandezmendoza7147
    @santosahernandezmendoza7147 6 років тому +7

    Programming strategies such as this contribute to changing the world in Newton style, Nikola Tesla and even Albert Einsten. An effort like his is equivalent to an increase in his genius. Thank you for giving me the opportunity to learn from your wonderful work.

  • @justwatching5930
    @justwatching5930 7 років тому

    Thank you for listening to your viewers and followers. You are awesome!
    I'll watch out for your future tutorials. More power to you!

  • @amrsaid5641
    @amrsaid5641 3 роки тому

    Best google sheet editor You have all our love and encouragement

  • @mdamirhossain9376
    @mdamirhossain9376 3 роки тому

    Though this is a kind of an old video, but yet it is the best practice I ever had for dependent drop-down menus. Love it.

  • @pepe5148
    @pepe5148 5 років тому +1

    One thing to notice is when you clear couple cells at once (i.e. by dragging or selecting with shift) only the first dependent dropdown list is cleared. Excellent video! Thank you so much! This video solved my problem!

    • @4KGofMaul
      @4KGofMaul Рік тому

      4 years too late for you but for anyone else who may come across this:
      Change onEdit to onEdit(e) to get the event object that triggered it
      use e.range to get the full range that was edited
      use a for loop and loop from i = 0 to e.range.getNumRows()
      apply the validation to a new getRange(e.range.getRow() + i , dropdown list column number)
      will obviously need to do checks to make sure edits are within your preferred row range, correct column etc etc.
      If you have a good grasp of programming then you can go one step further for efficiency and copy the edited range into a 2d array using .getValues(), apply the validation to each appropriate index in the 2d array then set the edited range to the 2d array validations created using .setValues() as it greatly reduces the number of api calls.

  • @benliebrand5271
    @benliebrand5271 7 років тому +1

    This Script is great as this covers what users would like to do as far as multiple options down a column. Thanks for covering this option.

  • @Dameinthewild
    @Dameinthewild 4 роки тому

    I had a couple little snags but totally got this working for a budget sheet I made and it's killer. Thank you so much for putting this together. I am a complete N00B at Scripts but this was still easy enough to follow. Great work.

  • @mauricioalejandroarayavale3278
    @mauricioalejandroarayavale3278 4 роки тому

    THANKS!! ,
    2 days searching the internet. I finally found the solution

  • @bkspencer8746
    @bkspencer8746 3 роки тому

    This will help me a ton once I go back and do basic scripts. LOL A friend said it's easy, but not yet. :) I like the way you explain things, btw; it's clear and obvious, building step by step. I can easily see what you're doing, even not knowing scripts yet.

  • @carmencastro5512
    @carmencastro5512 5 років тому

    You are the best teacher I ever had even in spanish, God bless you for your amazing job...

  •  6 років тому

    Excellent tutorial! I would be super excited about a followup video about how to deal with another column/criteria - ie Brand>Model>Accessorypackage - assuming each car model comes with a few different accessory set options. I have done this successfully with formulas, but ends up being really complex - keen to see how it can be solved with apps script.

  • @SaretGnasoh
    @SaretGnasoh 6 років тому

    THE BEST DEPENDENT DROPDOWN LIST

  • @imamfachrudin1904
    @imamfachrudin1904 2 роки тому +1

    brother thank you for superb knowledge.
    but i got an issue from this one.
    if we wanna input more than 15 rows (total 14 contents a row) on lists sheet, that doesn't exist on dropdown.
    would you explain this? thank youuu

  • @mizmoman
    @mizmoman 6 років тому

    Another awesome lesson that solves a very practical problem. Thanks for sharing, and please keep them coming!

  • @kiokokyalo9537
    @kiokokyalo9537 4 роки тому +4

    Hey sir, I love your tutorials they are detailed and accurate. However, "I AM GETTING LOADING" for my second column. Any assistance?

  • @NotFound-ll5kc
    @NotFound-ll5kc 2 роки тому

    This is an excellent tutorial, thank you. What if my validation data is not in a consolidated table on a single page but rather dispersed thorughout several sheets in my document? I have a master category list and next to every cateogry name I have entered a range name where the data for that category lives. I imagine it must be possible to use indirects or lookups in GAS but I'm not sure how I'd go about it.

  • @zellefrancisco9599
    @zellefrancisco9599 4 роки тому +1

    Hello! Thank you for this tutorial! It was truly a great help and you have explained it so well. On a side note, I think, having set the data validation of the first column to "Reject Input" would be much easier, as it will prevent someone on typing that's not on the list. hehe. But yeah, just a suggestion. Thanks again! ^^

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 роки тому +1

      Good point.

    • @RonanRTW
      @RonanRTW 4 роки тому

      Still an awesome video but agreed... Video ends at about 13 minutes if you do.

  • @tauhidali2886
    @tauhidali2886 3 роки тому

    Thanks man... Thanks for making my work more Better

  • @gkarapeev
    @gkarapeev 6 років тому +22

    datass.

  • @aivie1900
    @aivie1900 3 роки тому

    My holiday's Off is worth it because of this. Thank you. and I'm ready to explore more in your channel. #2021

  • @b0n3zy
    @b0n3zy 6 років тому +1

    Thanks a ton for these!!! I followed both parts carefully and was able to apply to my cases with different tab names, columns and rows.
    Specifically, I used it for an event budget calculation with hotels and hotel room types.
    How would I go about implementing a third row with prices that get filled in automatically based on the first two choices?
    For example, if Column A (Hotel) is X and Colum B (Room Type) is Y, use a specific price.

  • @TevfikBagcivan
    @TevfikBagcivan 3 роки тому +1

    Perfect! That's exactly what I was working on.

  • @MayurPatil-j9j
    @MayurPatil-j9j 11 місяців тому

    One thing to notice is when you clear couple cells at once (i.e. by dragging or selecting with shift) only the first dependent dropdown list is cleared. Is there a work around for it?

  • @bernardsco7663
    @bernardsco7663 2 місяці тому

    Thanks a lot .. you have the logic and capability .. it was so useful

  • @leandro7avares
    @leandro7avares 4 роки тому

    Believe it or not, right now im typing with my feet, bc im using my hands to clap! You deserve my sister bro!

  • @stellarshores8565
    @stellarshores8565 5 років тому

    This only took 3 tries and 6 hours but I figured it out!!!

  • @shodan8221
    @shodan8221 4 місяці тому

    THANK YOU this worked, and I learned a ton!

  • @MrJdorrington
    @MrJdorrington 5 років тому

    Thank-You - My very First Script! Much Appreciated.

  • @מענדיליפקין
    @מענדיליפקין 6 років тому +2

    First thanks!
    How can I add protection that they can not edit the second cell before the first one
    (Meaning that you can not write in column B before you fill column A)

  • @ramonvermij
    @ramonvermij 6 років тому

    Awesome! I followed all 3 of your instruction video's:
    And I have it all working :)

  • @MultiAnandk
    @MultiAnandk 3 роки тому +1

    Great video. Helped me a lot.

  • @ezequiel9055
    @ezequiel9055 6 років тому

    Thank you so much sir, your videos are very, VERY much appreciated. Excellent quality in the contents, the explanations, the video. I'm learning a lot.

  • @michamalczewski9374
    @michamalczewski9374 6 років тому +1

    It is perfect! How to do the same for 3 dependent lists and more?

  • @johnnyblaze8970
    @johnnyblaze8970 4 роки тому

    How can you modify this to produce the "Model" in two columns side by side? I want the same exact thing just two columns of the options next to eachother

  • @RobertKza
    @RobertKza 5 років тому

    You are a brilliant teacher !! Many thanks cool way to help me with Apps Script

  • @zamapon
    @zamapon 3 місяці тому

    Outstanding! You really helped us out

  • @ryannugraha4440
    @ryannugraha4440 3 роки тому +1

    Thanks a lot!! This is super helpful

  • @yuvarajrajarapu
    @yuvarajrajarapu 2 роки тому

    Thanks dude, you are great, from India

  • @swadesme1627
    @swadesme1627 4 роки тому

    Sir can you please help me to create google form with dependat drop down list for Country, State, District, Taluka etc.
    Unable to find the solution

  • @liliyakostadinova222
    @liliyakostadinova222 3 роки тому

    Is there any way to combine this script with one for automatic sorting by the Statuses? So for example, say we want BMW to be first, then Audi etc.? Otherwise, this works amazing, thank you so much for this video!

  • @Slippylube
    @Slippylube 4 роки тому

    How would you hide a value, in the Lists tab, from the model dropdown, if you select it within the Main tab? Thanks.

  • @ferfr01
    @ferfr01 11 місяців тому

    That was amazing bro, you got it

  • @monubanamonubana
    @monubanamonubana 4 роки тому

    Hi, thanks for sharing this! Extremely useful. I am new to script editor. Could you let me what would be the process to create similar thing on another sheet in the same google sheet.

  • @stevensurez1
    @stevensurez1 5 років тому

    hello good afternoon, how to avoid that the list is limited to the first column, if I want to implement it in different sheets and different column as it would be.

  • @PKAdventures
    @PKAdventures 6 років тому

    i was having trouble getting this to work, so i thought maybe i messed up. but i checked my code against yours, and they were the same. so i thought I'm just missing something, so i copied and pasted your code to replace mine. still didn't work. so i went back through and reread it like 5 times, then i finally realized that i didn't name my main sheet the same as you did, but while listening to you i put it as Main in the code. i feel like such an idiot right now lol. but at least i got it working. thanks a lot for these vids, they really helped me out.

  • @findthetruth3021
    @findthetruth3021 4 роки тому

    Could you please make a video on how to run two or multiple scripts in one Google sheet. I could not find any video on UA-cam. Thanks in advance

  • @SaajidAkram
    @SaajidAkram 6 років тому +1

    You don't have to write your code in a new line to popup the auto-completion list, just press: Ctrl + space

  • @АлександрВоробец-з6ш

    What if we use 'if else' statement for checking activeCell:
    if(makeIndex != 0){
    var validationRange = datass.getRange(3, makeIndex, datass.getLastRow());
    var validationRule = SpreadsheetApp.newDataValidation().requireValueInRange(validationRange).build();
    activeCell.offset(0, 1).setDataValidation(validationRule);
    } else {
    activeCell.clearContent();
    }

  • @computergeeks7546
    @computergeeks7546 5 років тому +1

    I used to have problem with loading the dependent list for dropdown (second column dropdown of Main) which it could not load the list and just showed "loading". It was happenned when I deleted unnecessary empty columns and rows for reducing the file size purpose.
    After several trials, I found that we should put one empty row in the dependent list after the column list with the most items. Let say the column 'E' has the most row items (from 'E3:E10'), then add single empty row after it (row 11).

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  5 років тому +1

      Instead of makes[0] convert array of arrays to a regular array makes.map(function(r){ return r[0] });

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  5 років тому +1

      Also I have improved version of this uploaded ua-cam.com/video/s-I8Z4nTDak/v-deo.html

  • @computergeeks7546
    @computergeeks7546 6 років тому

    I love this brilliant script and the easily-understanding presentation method of yours.
    By the way, what does square brackets in "makes[0]" is for?

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  6 років тому

      It get the first element in the array which is the essentially the first row.

    • @computergeeks7546
      @computergeeks7546 5 років тому

      @@ExcelGoogleSheets What if I wanna make the "makes" in rows, not in column?
      My data is presented in column 1 as the main and depended in the next columns:
      Province > City
      Jatim > Sby, Mlg, Mdn
      Jateng > Smg
      Jabar > Bdg, Crb
      Because if I changed this line:
      makes = datass.getRange(1, 1, 1, datass.getLastColumn()).getValues()
      into:
      makes = datass.getRange(1, 1, datass.getLastRow(), 1).getValues()
      it show array values "[[Jatim],[Jateng],[Jabar]]".
      And as I used "makes[0]" than only showed [Jatim] instead of the values "[Jatim, Jateng, Jabar]"

  • @christosdaglis1163
    @christosdaglis1163 3 роки тому

    You're a life saver. Thank you!!

  • @engmohammed123456
    @engmohammed123456 5 років тому

    Hello
    Thanks for your efforts
    I just need your help I have already make the dynamic drop list and it’s working fine but now the problem and I need to hand another drop list in the same sheet and I don’t know how to edit the script to make it read the data from a different source
    Thanks again

  • @AlejandraRodriguezTi
    @AlejandraRodriguezTi 6 років тому

    Hi :) great video, thanks. Is it possible to have the options of the column B (Model) faster? not having to wait those seconds after choosing the "Make" in column A?

  • @ahmedessameldin5793
    @ahmedessameldin5793 6 років тому

    How can I edit the columns places in the script? Lets say the drop list is in Column I and the values should appear in column O

  • @bitekanktya8405
    @bitekanktya8405 7 місяців тому

    have any video of Dependent Dropdown List for Apps Script form- page.html.

  • @2kmanglani
    @2kmanglani 5 років тому

    Thanks for this! Any idea how to get rid of the drop down arrow? I'm using clearDataValidations and it removes the options but not the arrow.

  • @marcnaidu5804
    @marcnaidu5804 5 років тому

    Can this be adapted to be used for a google form getting its data values from a google sheet?

  • @hubertambrois-geniecivil5275
    @hubertambrois-geniecivil5275 5 років тому

    Thank you very much for your great videos !
    I have a question :
    Can we update a cell automatically (A3 for example) in Model column when we replace the A3 model by a new Audi model in the lists tab ?
    I hope I was clear.
    Thank you for advance for your response

  • @NeerajKumar-hn1pn
    @NeerajKumar-hn1pn 4 роки тому

    Great work sir

  • @AnandKumar-ed4cw
    @AnandKumar-ed4cw 4 роки тому

    how to import this google spreadsheet data in google form?

  • @Mirach84
    @Mirach84 6 років тому

    I just wanted to know if there is a way to permanently remove the dropdown arrow from the cells on column B. Thanks for the tutorial!

  • @kimroque3858
    @kimroque3858 5 років тому

    This tutorial is awesome and very useful for a beginner like me who has zero knowledge on programming and scripts.
    But when I save the sheets in excel format, the items on the drop down list on the first column remains but when changed, the items on the second column stays the same. Is there anything I can do about this?

  • @zainkazme7998
    @zainkazme7998 4 роки тому

    I need to add 20 main sheets linked with the lists sheet. is it possible?

  • @bronis_lav
    @bronis_lav 4 роки тому

    Hello! Thank you for an example! But how would you implement such thing in case you edit(copy-paste) one or multiple cells?

    • @bronis_lav
      @bronis_lav 4 роки тому

      It can be half managed by sheet.getActiveRange and loop the main solution for each cell in active range, but it will not work if you paste without preselect all affected cells, but if we will use event.range it will work.

  • @kristinvs3726
    @kristinvs3726 3 роки тому

    I used this script (and it works!) but now it's affecting all my other sheets, how can I use this for one specific sheet?

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  3 роки тому +1

      add to your if statement
      && SpreadsheetApp.getActiveSpreadsheet().getActiveSheet().getSheetName() == "yousheetname"

  • @christopherbacani8203
    @christopherbacani8203 5 років тому

    How do you add rows from here? I can't do it because it says it's protected. Help please

  • @diduschannel
    @diduschannel 2 роки тому

    Awasome tutorial! Auth thanks for ur job!

  • @ahmedsuhail9226
    @ahmedsuhail9226 6 років тому

    when I try to rewrite the script and use another drop-down cell in the same sheet, why am i getting error to the first data validations.? can you help me ?

  • @lazalazarevic6192
    @lazalazarevic6192 6 років тому

    What about having dropdown menus with multiple selection choices?

  • @brookemahnken2480
    @brookemahnken2480 3 роки тому

    Amazing. This was so helpful

  • @andrebacuri
    @andrebacuri 4 роки тому

    Thanks man, this video is great! Well done!

  • @aneknymph4946
    @aneknymph4946 5 років тому

    Thanks, it is what i needed. Only one thing in this example is missing: link to live-demo (With locked edition, available to copy);

  • @ckesavaram3126
    @ckesavaram3126 4 роки тому

    I have to correlate 5 column data in a selective drop down sheet. But i couldn't get a answer..

  •  4 роки тому

    Hi,
    Thanks a lot for this, really well structured and explained, save me a lot of time!
    Question: How can I block user from typing something in column B of main tab?
    By the way, why did you allow invalid data in column A, why didnt you set this to reject input? Just wondering...
    Thanks

  • @АлександрВоробец-з6ш

    And thank you so much!!! Your script is so helpful!

  • @_ShrimplyPibbles
    @_ShrimplyPibbles 6 років тому +1

    Gotta love the variable name... datass:D great video btw

  • @cheewurz
    @cheewurz 5 років тому

    Pretty Cool Stuff there Guy!
    Question though no related to thus Video.
    How would you tackle Auto Extending a Form?

  • @rockydagalea2422
    @rockydagalea2422 7 років тому

    How to do this if I add one more column on the "Main Tab" i want to add a "Status" header on C Column

  • @ramonvermij
    @ramonvermij 6 років тому

    Would you know of how to duplicate this whole thing? That I can have two more columns with different categories and subcategories?

  • @zainkazme7998
    @zainkazme7998 4 роки тому

    Dear Sir,
    Firstly,I thank you for the remarkable videos you have made. Everybody is learning a lot from them. I have one query, I hope you will give me a solution for that. In the" Dependent Dropdown List for Entire Column - Apps Script " I need to make a workbook that contains more than 1 main sheet, which linked with the Lists sheet. E.g I like to make 15 main sheets linked with one list sheet. is it possible?

  • @Pablo-bw5wz
    @Pablo-bw5wz 5 років тому

    Thank you so much for this video! I followed the steps and my google sheet drop down menus are working great. Just one question: Is it possible to reject input that doesn't fall within the range, instead of just showing a warning message?

    • @Pablo-bw5wz
      @Pablo-bw5wz 5 років тому

      I figured it out adding .setAllowInvalid(false) to the validation rule. The validation rule will look like this:
      var validationRule = SpreadsheetApp.newDataValidation()
      .setAllowInvalid(false)
      .requireValueInRange(validationRange).build();
      activeCell.offset(0, 1).setDataValidation(validationRule);

  • @shylah164
    @shylah164 6 років тому

    This video is just perfect for what I really need. I only have a problem on how I can add another dependent column. I am currently using named ranges which does not allow spaced between the words/values I have. Can anyone help me how to add another column. I've been trying to play with the codes since yesterday but I'm just not getting it. Thank you in advance!

  • @solusidarilangit
    @solusidarilangit 5 років тому

    why not just reject value with the data validation rule setting instead???

  • @universmotard8690
    @universmotard8690 5 років тому

    hi, thank for the video, do you have a script for 4 dependent dropdown column ?

  • @adhiputra4235
    @adhiputra4235 4 роки тому

    where is the part 1?

  • @nagionline
    @nagionline 3 роки тому

    What if we type wrong value in column 1, it clears the data validation rule and value. But what happens when we do undo. Will it get the previous value. Hope you understand my question

    • @nagionline
      @nagionline 3 роки тому

      Probably I am very late to comment and had go through few comments and it seems this question was not raised. But if it is already answered. Could you be kind to reiterate here. Thanks

  • @shadevoiceless7733
    @shadevoiceless7733 6 років тому

    Hello, can you make some video about the html service (html template for example with variable from a sheet and then send an email)?

  • @isaacfleming4268
    @isaacfleming4268 2 роки тому

    Are you able to share this script in a file with me?

  • @arifsali
    @arifsali 7 років тому

    This is beautiful. Thank you. Can this be done in Excel? (I assume no).
    Also, if possible, please add comments as you go along in your thinking-out-loud process. Your thinking-out-loud is very helpful in understanding what is going on. It is just so that the code becomes hazy for those of us who are watching, after you move forward from one line to another, or as you go back and forth in logic-building. I think your comments written out along-the-way, could be helpful.

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  7 років тому

      Yes, but you don't need scripts in Excel. You just use Indirect function right inside of data validation range box.

  • @ericdiamante2010
    @ericdiamante2010 4 роки тому

    Logging does not work for me, in addition, the script suddenly stopped producing the 999 in my selected cell with no changes. Have no idea WTH is going on

  • @mreighties2860
    @mreighties2860 6 років тому

    How can the script be adjusted to create 2 or more columns of drop-downs? Right now if I make a choice in column A then script will create a drop-down in column B populated with items based on choice made in column A. I would like to instead create 2 or even more drop-down columns based on drop-down in A. Like if I make a choice in column A then the script creates 2 drop-downs in columns B and C populated with same choices. This is for a user I am helping who wants to choose a league in column A and then choose 2 teams from the drop-downs in B and C who are in the same league.
    Thanks,
    James :)

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  6 років тому

      Hi James; sorry, but this is not something I can explain in a comment.

  • @mrmcmeowmeow
    @mrmcmeowmeow 5 років тому

    Well done tutorial - much appreciated

  • @Ic3m4nHU
    @Ic3m4nHU 6 років тому

    Thank you soo much! The clearDataValidation() is not working for me... I mean... it's working, remove the validation, but a few moment latter put it an emtpty select. I don't know why.

    • @Ic3m4nHU
      @Ic3m4nHU 6 років тому +1

      I find the solution, it's my fault! :)

  • @bubblemilktea4503
    @bubblemilktea4503 4 роки тому

    Thank you for the tutorial! It is great. However, my clearDataValidations() is not working. clearContent() is working fine but not the clearDataValidations(). Please help! T.T

  • @fantouch
    @fantouch 6 років тому

    Excelent,
    There is a way to modify/update information when you use a query or vlookup?
    Example
    The Doctor have a database from his patients. When the patient come back for a checkup he pulls the information just with the patient name in a nice dashboard.
    How can I add or modify information from the dashboard??
    Dashboard = just a nice sheet I google sheets
    I was thinking to put aside a data validation list of the category (age, weight, comments....)
    Then use two scripts one for adding information to the cell (like concatenating ) and another for re-write the content of a cell.
    I have no idea how to go backwards to the dashboard to the database

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  6 років тому

      You can't use QUERY or VLOOKUP for this. Unless there is an addon you can use, your only option would be Apps Script and quite a bit of programming work.

    • @fantouch
      @fantouch 6 років тому

      Learn Google Spreadsheets thanks, do you have a video where you can find an specific cell in different sheet, like index and math but in script. If I have the name of the patient (row) and the category that I want to modify (Column) .
      Then I use get value from the dashboard comentes and then pass that value to the row,column in the database
      I have been watching a lot of your videos but I don’t remember watching something like that