{"id":15434,"date":"2023-08-01T09:00:00","date_gmt":"2023-08-01T00:00:00","guid":{"rendered":"https:\/\/www.autooffice.co.kr\/blog\/2023\/08\/01\/retrieve-values-from-multiple-sheets-in-apps-script\/"},"modified":"2025-09-15T18:35:17","modified_gmt":"2025-09-15T09:35:17","slug":"retrieve-values-from-multiple-sheets-in-apps-script","status":"publish","type":"post","link":"https:\/\/www.autooffice.co.kr\/en\/blog\/2023\/08\/01\/retrieve-values-from-multiple-sheets-in-apps-script\/","title":{"rendered":"Retrieve Values from Multiple Sheets in Apps Script"},"content":{"rendered":"<p>This post is a corrected post after AI explains the code included in the book <a href=\"https:\/\/www.autooffice.io\/content\/ebizbooks-apps-script\" target=\"_blank\" rel=\"noopener\" title=\"\">&#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 explore how to retrieve values from multiple sheets in Apps Script. We will write a function that retrieves values from two specific sheets in a Google Spreadsheet and logs them using the Logger service.<\/p>\n<h2 id=\"code\">Code<\/h2>\n<pre><code>function getA1C3Values_4() {\n  const SS = SpreadsheetApp.getActiveSpreadsheet();\n  const sheetNames = ['Sheet1', 'Sheet2'];\n\n  const T_SHEET1 = SS.getSheetByName(sheetNames[0]);\n  const value1 = T_SHEET1.getRange('A1:C3').getValues();\n\n  const T_SHEET2 = SS.getSheetByName(sheetNames[1]);\n  const value2 = T_SHEET2.getRange('A1:C3').getValues();\n\n  Logger.log(value1);\n  Logger.log(value2);\n}<\/code><\/pre>\n<h2 id=\"explanation\">Code Explanation<\/h2>\n<p>The code defines a function named <code>getA1C3Values_4<\/code>. It starts by getting the active spreadsheet using <code>SpreadsheetApp.getActiveSpreadsheet()<\/code>. Two sheet names, &#8216;Sheet1&#8217; and &#8216;Sheet2&#8217;, are defined in an array.<\/p>\n<p>The code then retrieves the first sheet using <code>SS.getSheetByName(sheetNames[0])<\/code> and gets the values in the range A1:C3 using <code>T_SHEET1.getRange('A1:C3').getValues()<\/code>. The same process is repeated for the second sheet.<\/p>\n<p>The values are logged using <code>Logger.log<\/code>.<\/p>\n<h2 id=\"example\">Example<\/h2>\n<p>When you execute the <code>getA1C3Values_4<\/code> function, the values in the range A1:C3 from &#8216;Sheet1&#8217; and &#8216;Sheet2&#8217; will be logged in the Apps Script Logger.<\/p>\n<h2 id=\"ai-prompt\">AI Prompt<\/h2>\n<p>Write a function that retrieves values from two specific sheets in a Google Spreadsheet and logs them using the Logger service.<\/p>\n<p>A function named <code>getA1C3Values_4<\/code> should be created, and it should:<\/p>\n<ul>\n<li>Get the active spreadsheet<\/li>\n<li>Define an array of two sheet names<\/li>\n<li>Retrieve the values in the range A1:C3 from the first sheet<\/li>\n<li>Retrieve the values in the range A1:C3 from the second sheet<\/li>\n<li>Log the retrieved values using <code>Logger.log<\/code><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will explore how to retrieve values from multiple sheets in Apps Script. We will write a function that retrieves values from two specific sheets in a Google Spreadsheet and logs them using the Logger service.<\/p>\n","protected":false},"author":1,"featured_media":15441,"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,524,526,7],"class_list":["post-15434","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-spreadsheet","category-apps-script","tag-ai-assisted","tag-script","tag-getrange","tag-getsheetbyname","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\/15434","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=15434"}],"version-history":[{"count":2,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15434\/revisions"}],"predecessor-version":[{"id":17222,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15434\/revisions\/17222"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/media\/15441"}],"wp:attachment":[{"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/media?parent=15434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/categories?post=15434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/tags?post=15434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}