{"id":15559,"date":"2023-08-11T09:00:00","date_gmt":"2023-08-11T00:00:00","guid":{"rendered":"https:\/\/www.autooffice.co.kr\/blog\/2023\/08\/11\/copying-a-tab-in-apps-script\/"},"modified":"2025-09-15T18:48:17","modified_gmt":"2025-09-15T09:48:17","slug":"copying-a-tab-in-apps-script","status":"publish","type":"post","link":"https:\/\/www.autooffice.co.kr\/en\/blog\/2023\/08\/11\/copying-a-tab-in-apps-script\/","title":{"rendered":"Copying a Tab in Apps Script"},"content":{"rendered":"<p>This post is a corrected post after AI explains the code included in the book <a title=\"\" href=\"https:\/\/www.autooffice.io\/content\/ebizbooks-apps-script\" target=\"_blank\" rel=\"noopener\">&#8220;Google Apps Script 101: Building Work Automation For Free&#8221;<\/a>. Added a <s>strikethrough<\/s> when editing what AI has written, and added <span style=\"color: #ff3366;\">color<\/span> when edited by author<\/p>\n<h2>Table of Contents<\/h2>\n<ol>\n<li><a href=\"#summary\">Summary<\/a><\/li>\n<li><a href=\"#code\">Code<\/a><\/li>\n<li><a href=\"#explanation\">Code Explanation<\/a><\/li>\n<li><a href=\"#example\">Example<\/a><\/li>\n<li><a href=\"#ai-prompt\">AI Prompt<\/a><\/li>\n<\/ol>\n<h2 id=\"summary\">Summary<\/h2>\n<p>In this blog post, we will learn how to copy a tab in Google Sheets using Apps Script. We will explore the code that copies a specific sheet to the same spreadsheet and to a new spreadsheet. Finally, we will retrieve the URL of the newly created spreadsheet.<\/p>\n<h2 id=\"code\">Code<\/h2>\n<pre><code>function copyTab() {\n  const SS = SpreadsheetApp.getActiveSpreadsheet()\n  const T_SHEET2 = SS.getSheetByName('Sheet2')\n  const NEW_SS = SpreadsheetApp.create('newSheet')\n\n  T_SHEET2.copyTo(SS)\n  T_SHEET2.copyTo(NEW_SS)\n  Logger.log(NEW_SS.getUrl())\n}<\/code><\/pre>\n<h2 id=\"explanation\">Code Explanation<\/h2>\n<p>The <code>copyTab<\/code> function begins by getting the active spreadsheet using <code>SpreadsheetApp.getActiveSpreadsheet()<\/code>. It then retrieves the sheet named &#8216;Sheet2&#8217; using <code>SS.getSheetByName('Sheet2')<\/code>.<\/p>\n<p>A new spreadsheet is created using <code>SpreadsheetApp.create('newSheet')<\/code>. The <code>copyTo<\/code> method is used to copy &#8216;Sheet2&#8217; to both the original spreadsheet and the newly created spreadsheet.<\/p>\n<p><span style=\"color: #ff3366;\">When you select a range and use copyTo, you must have set the destination to the range. However, if you select a tab (sheet) and use copyTo, set the Google Spreadsheet file as the destination.<\/span><\/p>\n<p>Finally, the URL of the newly created spreadsheet is logged using <code>NEW_SS.getUrl()<\/code>.<\/p>\n<h2 id=\"example\">Example<\/h2>\n<p>Let&#8217;s say you have a Google Sheets document with two sheets: &#8216;Sheet1&#8217; and &#8216;Sheet2&#8217;. You want to create a new spreadsheet and copy &#8216;Sheet2&#8217; to both the original and new spreadsheets. The code mentioned above can be used to achieve this.<\/p>\n<p>After running the <code>copyTab<\/code> function, you will have two copies of &#8216;Sheet2&#8217; &#8211; one in the original spreadsheet and another in the newly created spreadsheet. The URL of the newly created spreadsheet will be logged in the Apps Script Logger.<\/p>\n<h2 id=\"ai-prompt\">AI Prompt<\/h2>\n<p>Write a function that copies a specific sheet to the same spreadsheet and to a new spreadsheet. Log the URL of the newly created spreadsheet.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will learn how to copy a tab in Google Sheets using Apps Script. We will explore the code that copies a specific sheet to the same spreadsheet and to a new spreadsheet. Finally, we will retrieve the URL of the newly created spreadsheet.<\/p>\n","protected":false},"author":1,"featured_media":15581,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"categories":[5,118],"tags":[512,69,537,7],"class_list":["post-15559","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-spreadsheet","category-apps-script","tag-ai-assisted","tag-script","tag-copyto","tag-spreadsheet"],"translation":{"provider":"WPGlobus","version":"3.0.2","language":"en","enabled_languages":["ko","en"],"languages":{"ko":{"title":true,"content":true,"excerpt":true},"en":{"title":true,"content":true,"excerpt":true}}},"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15559","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/comments?post=15559"}],"version-history":[{"count":5,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15559\/revisions"}],"predecessor-version":[{"id":17239,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15559\/revisions\/17239"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/media\/15581"}],"wp:attachment":[{"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/media?parent=15559"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/categories?post=15559"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/tags?post=15559"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}