0

参考:用于在 Google 表格中进行多次查找和替换的 Google Apps 脚本

我想将相同的代码用于我的目的,但只能在 1 列内使用...关于如何将此脚本限制为仅一列的任何建议?原因是当我运行它来更改列 J 中的部门名称时,它工作得很好,除了它还会更改我的日期(列 L 和 M)中的“数据类型”以包含时区,并且这会弄乱引用那些的其他工作表日期...谢谢!

4

1 回答 1

0

我最终换了

function replaceInSheet(sheet, to_replace, replace_with) {
//get the current data range values as an array 
var values = sheet.getDataRange().getValues();

function replaceInSheet(sheet, to_replace, replace_with) {
//get the current data range values as an array 
var values = sheet.getRange('J:J').getValues();
于 2019-02-28T20:01:34.207 回答