{"id":15523,"date":"2023-08-05T09:00:00","date_gmt":"2023-08-05T00:00:00","guid":{"rendered":"https:\/\/www.autooffice.co.kr\/blog\/2023\/08\/05\/inserting-a-value-in-google-sheets-using-apps-script\/"},"modified":"2025-09-15T18:43:35","modified_gmt":"2025-09-15T09:43:35","slug":"inserting-a-value-in-google-sheets-using-apps-script","status":"publish","type":"post","link":"https:\/\/www.autooffice.co.kr\/en\/blog\/2023\/08\/05\/inserting-a-value-in-google-sheets-using-apps-script\/","title":{"rendered":"Inserting a Value in Google Sheets using 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 insert a value into a cell in Google Sheets using Apps Script. We will learn how to use the <code>setValue()<\/code> method to set the value of a cell in a specific sheet.<\/p>\n<h2 id=\"code\">Code<\/h2>\n<pre><code>function insertValue() {\n  const SS = SpreadsheetApp.getActiveSpreadsheet()\n  const sheet = SS.getSheetByName('Sheet1')\n  let cell = sheet.getRange('A1')\n  cell.setValue(1)\n}<\/code><\/pre>\n<h2 id=\"explanation\">Code Explanation<\/h2>\n<p>The code defines a function called <code>insertValue()<\/code>. Inside the function, we first get the active spreadsheet using <code>getActiveSpreadsheet()<\/code> method and assign it to the <code>SS<\/code> variable.<\/p>\n<p>We then use the <code>getSheetByName()<\/code> method to retrieve the sheet named &#8216;Sheet1&#8217; and assign it to the <code>sheet<\/code> variable.<\/p>\n<p>Next, we use the <code>getRange()<\/code> method to get the range of cell &#8216;A1&#8217; in the sheet and assign it to the <code>cell<\/code> variable.<\/p>\n<p>Finally, we use the <code>setValue()<\/code> method to set the value of the cell to 1.<\/p>\n<h2 id=\"example\">Example<\/h2>\n<p>Let&#8217;s say we have a Google Sheet named &#8216;Data&#8217; and we want to insert the value 42 into cell &#8216;B5&#8217;. We can use the following code:<\/p>\n<pre><code>function insertValue() {\n  const SS = SpreadsheetApp.getActiveSpreadsheet()\n  const sheet = SS.getSheetByName('Data')\n  let cell = sheet.getRange('B5')\n  cell.setValue(42)\n}<\/code><\/pre>\n<h2 id=\"ai-prompt\">AI Prompt<\/h2>\n<p>Write a function that inserts the value 5 into cell &#8216;C10&#8217; in a Google Sheet named &#8216;Sheet1&#8217; using Apps Script.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will explore how to insert a value into a cell in Google Sheets using Apps Script. We will learn how to use the setValue() method to set the value of a cell in a specific sheet.<\/p>\n","protected":false},"author":1,"featured_media":15529,"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,535,7],"class_list":["post-15523","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-spreadsheet","category-apps-script","tag-ai-assisted","tag-script","tag-setvalue","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\/15523","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=15523"}],"version-history":[{"count":2,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15523\/revisions"}],"predecessor-version":[{"id":17233,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/posts\/15523\/revisions\/17233"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/media\/15529"}],"wp:attachment":[{"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/media?parent=15523"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/categories?post=15523"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.autooffice.co.kr\/en\/wp-json\/wp\/v2\/tags?post=15523"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}