如果单元格使用 Apps 脚本与来自不同 sheet 的列表中的一个相匹配,则进行条件格式化

Conditional formatting if a cell matches one from a list of a different sheet using Apps Script

如果该单元格出现在另一个数字列表中,我想应用条件格式的选项卡上有一个不断变化的数字列表,在不同的 sheet。

Potential Cities/Zip-Codes

List of Blocked Zip Codes

我希望主要“潜在城市”sheet 上的邮政编码在列在“封锁的邮政编码”sheet 上时进行格式化 sheet。

目的是创建一个格式更改,如果他们试图输入的邮政编码被阻止(或在列表中),将非常清楚地向用户显示。正常的条件格式不起作用,因为 copy/paste 会覆盖 CF 规则。我还需要能够将解决方案应用于多个不同的 sheets,它们都根据被阻止的单元格列表检查他们的单元格。

您可以为您的 Potential Cities Spreadsheet 创建一个 installable onEdit() trigger,它会检查 Blocked Zips sheet 是否匹配并相应地应用某种格式。

例如:

function checkForBlockedZips(e) {
  // do nothing if not column D
  if (e.range.getColumn() !== 4) return

  // get list of zips from blocked zips sheet
  const blockedZipsSsId = "your-spreadsheet-id"
  const blockedZipsSs = SpreadsheetApp.openById(blockedZipsSsId)

  const blockedZipsSheet = blockedZipsSs.getSheetByName("Sheet1")
  const zipCodes = blockedZipsSheet.getRange("A2:A").getValues()
    .flat(2)
    .filter(x => x)

  // check if the entered value is in the list of blocked zips
  if (~zipCodes.indexOf(e.range.getValue())) {
    // create cell style
    const strikethrough = SpreadsheetApp.newTextStyle()
      .setStrikethrough(true)
      .build()
  
    const richText = SpreadsheetApp.newRichTextValue()
      .setText(e.range.getValue())
      .setTextStyle(strikethrough)
      .build()
    
    // set the cell to have the desired rich text style
    e.range.setRichTextValue(richText).setBackground("yellow")
  }
  else {
    // if the value is not a blocked zip then reset the cell style 
    const nostrikethrough = SpreadsheetApp.newTextStyle()
      .setStrikethrough(false)
      .build()

    const richText = SpreadsheetApp.newRichTextValue()
      .setText(e.range.getValue())
      .setTextStyle(nostrikethrough)
      .build()

    e.range.setRichTextValue(richText).setBackground("white")
  }
}

注意事项:

  • 您需要使用 e.range.getValue() 而不是 e.value 以便可以读取 copy/pasted 值
  • 您需要将此脚本添加到潜在城市sheet并将其授权为可安装触发器