我正在尝试将条件格式规则从我的一个工作表复制到Google Sheets中的其他工作表。我知道,我可以只复制和使用“特殊粘贴”来复制/粘贴它们,但我特别想使用一个脚本,因为我已经设置了一个自动创建新工作表的脚本,我想将条件格式应用于我制作的所有工作表,因为整个电子表格就是一种日志,包含条件格式的特定列应用于整个工作表。这就是我所拥有的:
发布于 2019-11-21 00:58:29
使用SpreadsheetApp functions和ConditionalFormatRuleBuilder类,可以从工作表中的规则创建新规则,并将其插入到新工作表中。我创建了下面的代码,用于从'Merkler‘表中获取所有规则,并将它们插入到'New sheet’中,前提是这些规则应用于'F‘列。
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。
发布于 2020-07-14 02:51:55
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());
}
您可以使用以下选项之一:
copyFormatToRange(sheet, column, columnEnd, row, rowEnd)
copyFormatToRange(gridId, column, columnEnd, row, rowEnd)
请注意,此解决方案仅适用于将条件格式从一个工作表传递到同一电子表格中的另一个。
https://stackoverflow.com/questions/58939637
复制相似问题