我要制作的是一个工作簿,用户可以从一组项目(Sheet1,A列)的下拉列表中进行选择,然后通过行B查找在“数据集”工作表中选择的项目,并返回带有整数的值从0
到(“数据集”列C中的相应库存总量)
我从@iamblichus得到了一些很棒的代码,这些代码将填补相应库存数量中的下拉列表 see his code here我已经使用查询公式在某种程度上实现了Here来查询组库存数量。我不确定如何在两张纸上实现这一点。
答案 0 :(得分:0)
扩展@iamblichus提供的代码here,您可以指定要从中获取数据的表格,并使用onEdit()触发器自动更改单元格所在的下拉列表编辑。
将此附加到您提供的示例电子表格中
function onEdit(e) {
var ss = SpreadsheetApp.getActive(); // Get the spreadsheet bound to this script
var dataSetSheet = ss.getSheetByName("Dataset"); // Get the sheet called "Working with script" (change if necessary)
var fillSheet = ss.getSheetByName("Sheet 1");
// Get the different values in column C (stock quantities):
var firstRow = 3;
var firstCol = 3;
var numRows = dataSetSheet.getLastRow() - firstRow + 1;
var stockQuantities = dataSetSheet.getRange(firstRow, firstCol, numRows).getValues();
var stockNames = dataSetSheet.getRange(firstRow, firstCol - 1, numRows).getValues();
// Iterate through all values in column:
for (var i = 0; i < stockQuantities.length; i++) {
Logger.log(stockNames);
Logger.log(stockQuantities);
var stockQuantity = stockQuantities[i][0];
var values = [];
// Create the different options for the dropdown based on the value in column C:
if (stockNames[i] == e.value) {
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:
fillSheet.getRange(e.range.getRow(), 2).clear();
var dropdownCell = fillSheet.getRange(e.range.getRow(), 2).setDataValidation(rule);
}
}
}
我将其作为onEdit()
函数,是因为在自定义函数中在Read Only mode中调用了SpreadsheetApp
,因此无法调用任何set*()
方法。其中包括setDataValidation()
。
根据文档,支持电子表格服务,但是在“注释”下显示为:
只读(可以使用大多数
get*()
方法,但不能使用set*()
)。 无法打开其他电子表格(SpreadsheetApp.openById()
或SpreadsheetApp.openByUrl()
)。
希望对您有帮助!