使用Google脚本从Google Sheets中选择的当前行中获取值,可以通过以下步骤实现:
function getCurrentRowValues() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var selectedRow = sheet.getActiveRange().getRow();
var values = sheet.getRange(selectedRow, 1, 1, sheet.getLastColumn()).getValues()[0];
return values;
}
这样,你就可以使用Google脚本从Google Sheets中选择的当前行中获取值了。
注意:以上代码是使用Google Apps Script编写的,它是一种基于JavaScript的脚本语言,用于扩展和自动化Google应用。在使用Google脚本之前,你需要确保已经将电子表格保存到你的Google Drive中。
领取专属 10元无门槛券
手把手带您无忧上云