如果我无法描述我所面临的问题或偶然发现的背景,我应该道歉。如果还有其他信息可以帮助您了解发生了什么,请告诉我。
上下文: 我在一个电子表格中有两张纸:“检查表”(应该用作表单)和“编辑检查表”(顾名思义)将用于编辑前者的格式。这个想法是,一旦用户完成了宏的编辑,就可以通过简单地将新版本复制到旧版本中来替换以前的格式。
问题: 通过脚本使用Range.copyTo()函数将不会复制整个新表单,不会丢失整个列,尤其是格式和合并范围。请在下面的屏幕截图中找到
代码
/**
* Updates the checklist form after edditing.
*/
function update_checklist(){
// First we clean whatever used to be the checklis
del_checklist_sections();
// Now we gather the new checklist into a range
new_checklist = get_edit_checklist_form_range();
// We now have to make room for the new list on the Checklist Sheet
b_row = spreadsheet.getRangeByName("Checklist!"+NAMED_RANGES.form_start).getRow();
f_form.insertRowsAfter(b_row, new_checklist.getNumRows());
//new_checklist.copyFormatToRange(f_form, 1, new_checklist.getLastColumn(), b_row+1, b_row+1+new_checklist.getNumRows());
new_checklist.copyTo(get_checklist_form_range(), SpreadsheetApp.CopyPasteType.PASTE_NORMAL, false);
//new_checklist.copyTo(get_checklist_form_range(), SpreadsheetApp.CopyPasteType.PASTE_VALUES, false);
}
/**
* Correctly grabs the sections and tasks range in the checklist sheet.
*
* The correct range doesn't include the first and last rows of the named range.
*
* @return {Range} the corresponding range.
*/
function get_checklist_form_range(){
full_range = spreadsheet.getRangeByName("Checklist!"+NAMED_RANGES.full_form);
if (full_range.getNumRows() > 2){
// We are adding one so we won't consider the initial row in the range, and subtracting to so we won't consider the first and last.
return f_form.getRange(full_range.getRow()+1, full_range.getColumn(), full_range.getNumRows() - 2);
}else{
return 0
}
}
function get_edit_checklist_form_range(){
full_range = spreadsheet.getRangeByName("Edit Checklist!"+NAMED_RANGES.full_form)
// We are adding one so we won't consider the initial row in the range, and subtracting to so we won't consider the first and last.
// return f_form.getRange(full_range.getRow()+1, full_range.getColumn(), full_range.getNumRows() - 2)
return e_form.getRange(full_range.getRow()+1, full_range.getColumn(), full_range.getNumRows() - 2);
}
注意:为了使查找范围更加容易,我使用命名范围来指定工作表的各个部分。
更新:
答案 0 :(得分:0)
我花了一段时间回到这个项目,但是我们开始:
问题是我如何获得范围。事实证明,我并没有选择要复制和粘贴的所有数据。