Dropdown auto generating a range based on a total

两盒软妹~` 提交于 2020-02-06 07:57:12

问题


I am trying to create a sheet for users to select a quantity of items from a drop down list and it reference a TOTAL stock quantity amount.

I have had some luck finding a script to fill a dropdown that references a range but is clunky having to generate all the items in the range.

I would like the dropdowns (Column B) to reference the total sock (Column C) and it fill the dropdown without me having to render the range in columns D-Z.

Example Sheet


回答1:


If I understand you correctly, you want to create a dropdown in each cell in column B whose options are integers that go from 0 to the corresponding Stock Quantity in column C.

If that's the case, you can copy the following function to the script bound to your spreadsheet:

function generateDropdowns() {
  var ss = SpreadsheetApp.getActive(); // Get the spreadsheet bound to this script
  var sheet = ss.getSheetByName("Working with script"); // Get the sheet called "Working with script" (change if necessary)
  // Get the different values in column C (stock quantities):
  var firstRow = 2;
  var firstCol = 3;
  var numRows = sheet.getLastRow() - firstRow + 1;
  var stockQuantities = sheet.getRange(firstRow, firstCol, numRows).getValues();
  // Iterate through all values in volumn:
  for (var i = 0; i < stockQuantities.length; i++) {
    var stockQuantity = stockQuantities[i][0];
    var values = [];
    // Create the different options for the dropdown based on the value in column C:
    for (var j = 0; j <= stockQuantity; j++) {
      values.push(j);
    }
    // Create the data validation:
    var rule = SpreadsheetApp.newDataValidation().requireValueInList(values).build();
    // Add the data validation to the corresponding cell in column B:
    var dropdownCell = sheet.getRange(i + firstRow, 2).setDataValidation(rule);
  }
}

This script does the following (check inline comments for more detailed information):

  • First, it gets all the stock quantities in column C via getRange and getValues.
  • For each stock quantity, it creates an array with the different options for the corresponding dropdown in column B.
  • From each array, it creates the dropdown with newDataValidation and requireValueInList(values), and then sets it to the corresponding cell in column B with setDataValidation.

I hope this is of any help.



来源:https://stackoverflow.com/questions/59869138/dropdown-auto-generating-a-range-based-on-a-total

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!