Range.copyTo(DestinationRange,.PASTE_NORMAL,false)无法复制

时间:2019-01-22 19:33:02

标签: google-apps-script google-sheets google-sheets-api google-sheets-macros

如果我无法描述我所面临的问题或偶然发现的背景,我应该道歉。如果还有其他信息可以帮助您了解发生了什么,请告诉我。

上下文: 我在一个电子表格中有两张纸:“检查表”(应该用作表单)和“编辑检查表”(顾名思义)将用于编辑前者的格式。这个想法是,一旦用户完成了宏的编辑,就可以通过简单地将新版本复制到旧版本中来替换以前的格式。

问题: 通过脚本使用Range.copyTo()函数将不会复制整个新表单,不会丢失整个列,尤其是格式和合并范围。请在下面的屏幕截图中找到

Example of a new form, i.e. yet to be copied. The result of using Range.copyTo() to copy the new form

代码

/**
 *   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);

}

注意:为了使查找范围更加容易,我使用命名范围来指定工作表的各个部分。

更新

  1. 我试图记录一个宏来执行复制和粘贴任务,并且使用生成的代码可以正常工作。我将代码片段与自动生成的代码进行了比较,唯一的区别是范围的写入方式,但最后,它们应该是相同的。
  2. 我尝试先粘贴格式,然后粘贴值;它没用。

1 个答案:

答案 0 :(得分:0)

我花了一段时间回到这个项目,但是我们开始:

问题是我如何获得范围。事实证明,我并没有选择要复制和粘贴的所有数据。