0

尝试根据 a 列中的文本单元格或理想情况下 a 和 b 的组合对行进行条件格式化 [在 google 电子表格中]。[“热铅”+“大opp”]

我的标题行位于顶部,因此关键数据从 a3 开始。

4

1 回答 1

0

函数 onEdit() { var s = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Sheet1'), values = s.getRange('A3:B').getValues(), x, rowColors = [], color, colors = [ ], numCols = 3;

for (var row = 0, len = values.length; row < len; row++) { if (values[row][0] === 'Hot lead' && values[row][1] === 'large opp ') 颜色 = '红色'; 否则颜色='白色'; for (x = 0; x < numCols; x++ ) rowColors.push(color); 颜色.push(rowColors); 行颜色 = []; }

s.getRange('A3').offset(0,0,colors.length, numCols).setBackgroundColors(colors); }

于 2013-04-04T02:43:03.797 回答