我不是专家,并且尝试根据Google对其进行搜索。只有选中了一行中的所有复选框(c-h列),我才想隐藏该行。我能够看到每个数组都设置为“ true,true,true,true,true,true,true”,但不确定如何隐藏每个行的行
function ConditionalHideRow()
{
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName("Lucky");
var condition = sheet.getRange("C:H").getValues();
if (condition == "true, true, true, true, true, true")
{
sheet.hideRow
}
}