Google表格自定义函数条件格式

时间:2015-03-30 19:50:18

标签: javascript google-apps-script google-sheets spreadsheet

如果单元格的值等于单元格上面两行的单元格值,我需要使单元格文本变为红色。我在脚本编辑器中有这两个函数:

/**
 * Compares cell value to another cell relative in position to it.
 * Returns true if equal values.
 *
 * @param {Number} colDiff Relative positioning column difference.
 * @param {Number} rowDiff Relative positioning row difference.
 */
function equalsRelativeCellValue(rowDiff, colDiff) {
  var thisCell = SpreadsheetApp.getActiveRange();
  var relativeCellValue = getRelativeCellValue(rowDiff, colDiff);
  if (thisCell.getValue() === relativeCellValue)
    return true;
  else
    return false;
}


/**
 * Returns value of cell according to relative position
 *
 * @param {Number} colDiff Relative positioning column difference.
 * @param {Number} rowDiff Relative positioning row difference.
 */
function getRelativeCellValue(rowDiff, colDiff) {
  var range = SpreadsheetApp.getActiveRange();
  var col = range.getColumn();
  var row = range.getRow();
  var range2 = SpreadsheetApp.getActiveSheet().getRange(row + rowDiff,col + colDiff);
  return range2.getValue();
}

第二个函数getRelativeCellValue(rowDiff, colDiff)工作得很好,我将8放在一个单元格中,我下面的两个单元格输入getRelativeCellValue(-2, 0),单元格评估为8

但是第一个函数getRelativeCellValue(rowDiff, colDiff)由于某种原因不能用作条件格式的自定义函数:

Custom formula is: =equalsRelativeCellValue(-2,0)

困难的部分是指条件格式中引用的单元格的值。但是我的函数看起来正确,如果单元格值相等则返回true,如果不相等则返回false。我希望我只是不正确地使用条件格式的“自定义公式”功能,但是documentation is pretty sparse

1 个答案:

答案 0 :(得分:1)

只需实现您想要做的事情,只需使用条件格式,选择范围,并申请第一个单元格,它将适用于所有正确的:

EG。 在条件格式设置对话框中,选择自定义公式,粘贴自定义公式=J10=J8,然后选择范围J10:J100

OldAnswer:

您创建了一个循环引用。

如果您在单元格中输入=equalsRelativeCellValue(-2,0),如果等待函数解析,它的值是什么?

您可以在值之外的列中克服此问题,或直接在函数中传递值。

您也可以使用它来使单元格之间具有真/假状态:

function equalsRelativeCellValue(rowDiff, colDiff) {
  var below = getRelativeCellValue(1, 0);
  var relativeCellValue = getRelativeCellValue(2, 0);
  if (below === relativeCellValue)
    return true;
  else
    return false;
}