首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何使用脚本将条件格式规则从一个工作表复制到另一个工作表?

如何使用脚本将条件格式规则从一个工作表复制到另一个工作表?
EN

Stack Overflow用户
提问于 2019-11-20 01:23:00
回答 2查看 1.7K关注 0票数 2

我正在尝试将条件格式规则从我的一个工作表复制到Google Sheets中的其他工作表。我知道,我可以只复制和使用“特殊粘贴”来复制/粘贴它们,但我特别想使用一个脚本,因为我已经设置了一个自动创建新工作表的脚本,我想将条件格式应用于我制作的所有工作表,因为整个电子表格就是一种日志,包含条件格式的特定列应用于整个工作表。这就是我所拥有的:

EN

回答 2

Stack Overflow用户

发布于 2019-11-21 00:58:29

使用SpreadsheetApp functionsConditionalFormatRuleBuilder类,可以从工作表中的规则创建新规则,并将其插入到新工作表中。我创建了下面的代码,用于从'Merkler‘表中获取所有规则,并将它们插入到'New sheet’中,前提是这些规则应用于'F‘列。

代码语言:javascript
运行
复制
function copyFormat() {
  //Get the Spreadsheet where the Merkler and new sheet are in
  var spreadSheet = SpreadsheetApp.openById("[SPREADSHEET-ID]");
  //The source sheet with the formatting in column F is called Merkler
  var sheet = spreadSheet.getSheetByName("Merkler");
  //The target sheet is called "New Sheet"
  var newSheet = spreadSheet.getSheetByName("New sheet");
  
  //The formatting will be taken from column F and copy to it in new Sheet
  var range = newSheet.getRange("F2:F1000");
  var column = 6; //F is the 6th column

  //Get all Sheet rules and iterate through them
  var rules = sheet.getConditionalFormatRules();
  var newRules = [];
  
  for(var r = 0; r < rules.length; r++) {
    var rule = rules[r];
    //Get condition for each rule
    var booleanCondition = rule.getBooleanCondition();

    //Get the ranges to which each rule applies and iterate through
    var ranges = rule.getRanges();
    for (var i = 0; i < ranges.length; i++) {
      var ruleColumn = ranges[i].getColumn();  

      //If condition isn't null and edited column is the same as the one in the range, add rule
      if((ruleColumn == column) && (booleanCondition != null)) {
        var newRule = SpreadsheetApp.newConditionalFormatRule()
        .withCriteria(booleanCondition.getCriteriaType(), booleanCondition.getCriteriaValues())
        .setBackground(booleanCondition.getBackground())
        .setRanges([range])
        .build();
        newRules.push(newRule);
      }
    }
  }
  newSheet.setConditionalFormatRules(newRules);
}

您需要更换SpreadsheetID。

票数 2
EN

Stack Overflow用户

发布于 2020-07-14 02:51:55

代码语言:javascript
运行
复制
    function passConditionalFormat(sourceSheetName, targetSheetName) {
      var ss = SpreadsheetApp.getActive();
      //The source of data formatting rules
      var sourceSheet = ss.getSheetByName(sourceSheetName);
      var range = sourceSheet.getRange(1, 1, sourceSheet.getMaxRows(), sourceSheet.getMaxColumns());
      //The target of data formatting rules
      var targetSheet = ss.getSheetByName(targetSheetName);
      
      range.copyFormatToRange(targetSheet, 1, sourceSheet.getMaxColumns(), 1, sourceSheet.getMaxRows());
    }

您可以使用以下选项之一:

  1. copyFormatToRange(sheet, column, columnEnd, row, rowEnd)
  2. copyFormatToRange(gridId, column, columnEnd, row, rowEnd)

请注意,此解决方案仅适用于将条件格式从一个工作表传递到同一电子表格中的另一个

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/58939637

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档