How To Save Data In Google Sheets With Timestamps Using Apps Script

In this post, you’ll learn how to save the data in Google Sheets with timestamps, so that you have a record of the data at set time intervals (e.g. once a day or once a week).

We use Apps Script to save the data and set it to run automatically in the background.

Creating a Save Data function with Google Apps Script

Here’s our scenario: imagine we’re tracking a social media channel, for example, the number of followers of a Reddit group.

Maybe we enter the data manually, or better collect it automatically via Zapier or even via the API with Apps Script.

In other words, it changes daily and we want to record a snapshot in time.

First, let’s add a custom menu to Google Sheets which saves the current number of followers plus a timestamp in the rows below.

Second, we’ll look at setting up an automatic trigger to do this for us at set intervals (e.g. once per day).

The steps in detail then:

    Assume you have data in A1 and B1, put the formula =now() into cell C1, to give us our timestamp. Our spreadsheet should look like this:

Import social media followers into Google Sheet

headings

// custom menu function function onOpen() < const ui = SpreadsheetApp.getUi(); ui.createMenu('Custom Menu') .addItem('Save Data','saveData') .addToUi(); >// function to save data function saveData()

This adds two functions to our spreadsheet, one to save the data and the other to create a new custom menu so we can run our save data function from within our spreadsheet.

Google Sheet App Script Permission

saved data in Google sheets

The next step is to automate this saving data function to run at set intervals.

Save Data In Google Sheets Automatically

We’ll use an installable trigger to save timestamped data in Google Sheets automatically.

Steps for automatic data saving:

  1. Go to back to your script editor (Tools > Script editor… if you closed that tab).
  2. Click on Edit > Current project’s triggers
  3. This brings up the triggers dashboard window. In this window, click on + Add Trigger in bottom right corner
  4. In the first drop down, select the Save Data function
  5. For the remaining drop down options, select Head, then Time Driven and then the period you’re interested in.
  6. Voila! Come back after a while and you should have historic data saved in your spreadsheet (you may need to reload the sheet by refreshing your browser). It really is that easy.

Apps Script Trigger

Any comments or questions, feel free to leave them in the comments below!

100 thoughts on “How To Save Data In Google Sheets With Timestamps Using Apps Script”

Luisa Salcedo says:

Hi, Ben!!
First that all, thank you for everything, this is so amazing!
I want to ask you about Twitter code crash often, do you have any idea how to solve it, or why is happening? Both of them are having problems.
It works normally but after a few minutes shows #VALUE message. Best regards,

Ben says:

Thanks Luisa! Glad to be of help. The IMPORT functions can be temperamental and are affected by things like caching and changes to the XML/HTML structure of the original URL. Try adding (or removing) a final “/” at the end of the URL as Google will treat this as a new, different URL to go and fetch, so the caching is not an issue. I’ve found this sometimes fixes the issue. Also, in your function you could wrap the import XML function in an IFERROR function to have a custom error messages instead of a #N/A . For example, my function would look like this (assuming the Twitter URL is in cell A1): =iferror(query(IMPORTXML(A1,"//a[@data-nav='followers']"),"select Col2"),"Not available at this time") In my other web scraping article, I list two Twitter import methods so you try both, and then pick the one that works using an IF function for example.

Luisa Salcedo says:

Ben, Thank you again. I add a “/” at the end of the URL, and it works. I will let you know if crash it again. You’re awesome, I am so into this (code in Google SpredSheets) after I read your blogs.
Looking for learning more, do you know some free resources that I can look? Thanks!

Ben says:

Great! I find these sites pretty useful for Google Sheets work:
Official Google Sheets documentation
Google Sheets forums For more developer orientated work inside Google sheets using App Script, check out these ones:
Introduction to Apps Scripts
App Script documentation
Digital Inspiration – often has Google Sheets articles e.g. http://www.labnol.org/internet/google-scripts/28281/ Also, keep an eye out here, lots more content on Google Sheets coming this way! I’m creating a Google Sheets dashboard course and hoping to launch in a couple of months.

Luisa says:

Thanks, Let me know if you need help. I will work for free to learn more about this project. I will take a look and make it my goal for this year. Thank you for the inspiration and the good content.

Adrian Omoit says:

Hey Ben. first thank you for all the help you give us. I have a question. How to I save data in one sheet form to another sheet in a different sheet in another work book ?Currently I can do that but on the same workbook. Here is the script code am using. //var SPREADSHEET_NAME = “Data”;
//var SEARCH_COL_IDX = 0;
//var RETURN_COL_IDX = 0;
// // Save Data
function submitData() < var ss = SpreadsheetApp.getActiveSpreadsheet();
var formSS = ss.getSheetByName(“Form1”); //Form Sheet
var datasheet = ss.getSheetByName(“Data”); //Data Sheet //Input Values
var values = [[formSS.getRange(“C8”).getValue(),
formSS.getRange(“C10”).getValue(),
formSS.getRange(“C12”).getValue(),
formSS.getRange(“E8”).getValue(),
formSS.getRange(“E10”).getValue(),
formSS.getRange(“C14”).getValue(),
formSS.getRange(“C20”).getValue()]]; // Save New Data datasheet.getRange(datasheet.getLastRow()+1, 1, 1, 7).setValues(values);
SpreadsheetApp.getUi().alert(‘ “New Data Saved – Emp #’ + formSS.getRange(“C8”).getValue() +’ “‘); formSS.getRange(“C8”).clear();
formSS.getRange(“C10”).clear();
formSS.getRange(“C12”).clear();
formSS.getRange(“E8”).clear();
formSS.getRange(“E10”).clear();
formSS.getRange(“C14”).clear();
formSS.getRange(“C20”).clear(); >

sandeep kaur says:

hey ben!
i want a sheet that will track the editing history of my first sheet can you help me this i need it urgently for my school project

Jason says:

Hi Ben,
Thank you for all of your posts and examples. I am glad I found your site and have already subscribed so I don’t miss anything new. I found this post while trying to figure out how to save data in 3 different tabs of the same workbook by only entering the data once. I will enter the following data: idNum, firstName, lastName, teacher, className, and classTime. Then, based on the entry in className, the idNum, firstName, and lastName would be added to the end of the grade book roster for that class tab, classAttendance tab, and then all of the data entered would be saved and sorted by idNum in the Students tab. Am I being to ambitious with the scope of this post? I am pretty new to Google Apps Script so I am not entirely sure what is and isn’t possible to do.

Ben says:

Hey Jason! This is entirely feasible in Apps Script and it’s good to be ambitious! The code in my blog post needs a little modification though. You need to get the data from the input sheet, which will be in an array, and loop over it to identify the class name and match that to the different tab names. Each loop you can then paste the data into the matching tabs. Here’s a very quick example, feel free to make a copy so you can edit it: https://docs.google.com/spreadsheets/d/1kIJUV3RBmRZtGQMdaEt3AZOkHn1vQ4w57YSp39cgBVE/edit?usp=sharing And this is the code: // function to add custom menu to your spreadsheet
// Need to run this from the script editor menu first time (select this function and hit play button above)
function onOpen() var ui = SpreadsheetApp.getUi(); ui.createMenu('Custom Menu')
.addItem('Save to Tabs', 'saveToTabs')
.addToUi(); > // function to save data to different tabs
function saveToTabs() < // get input sheet
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName('Input'); // get data in input sheet
var data = sheet.getRange(2,1,sheet.getLastRow()-1,6).getValues(); // loop over array of input data and log each element to the correct tab
// where the tab name matches the class name in the input sheet
for each (elem in data) < // select class name from array
var // paste data to specific tab where class name in array matches tab name
class.getRange(2,1,1,6).setValues([elem]);
>
> Hope that helps! Cheers,
Ben

Jason says:

Hi Ben, Thanks for your response even though this is an old post. I think I am really close to finishing this script thanks to your guidance. I have modified your script to do a little more and now have come to a roadblock because I don’t know if appendRow() is the correct method for my case. I can copy all of the input values, store them, and send them to the correct tabs. The problem I am having is that I only want to save the first 3 columns into the class tabs because starting in column “D” there are formulas for grade calculations. Here is my Spreadsheet: https://docs.google.com/spreadsheets/d/10IROWMjccVJJednKFXIFcHpU2kjWEvOKAURKcdZIPSE/edit#gid=0 I am using appendRow(), but since there are formulas providing temporary blanks in column D, it adds a row after my last row so it can be a fully blank row. Is there a way to restrict appendRow() to only look at the first 3 columns? If not, is there another method to add it to the end of a list? Thank you again for all that you do.

Ben says:

Hey Jason, You can use getRange() and then setValues() to restrict to the 3 columns only. The tricky part is working out the last row in the first column to tell apps script where to put the new data, even if there are formulas in column D that go much further down (meaning we can’t use the handy getLastRow() method). The new stuff is bolded. Note it looked to me like classAttn was missing from the original appendRow in the “Students” sheet, so I added that into the array. I modified your saveData function (for the attendance sheet only) which should give enough to customize to your own needs: // function to save data
function saveData() // starts with active sheet for data entry
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName("Students"); // collects values in data entry row
var idNum = sheet.getRange('Students!A1').getValue();
var firstName = sheet.getRange('Students!B1').getValue();
var lastName = sheet.getRange('Students!C1').getValue();
var teacher = sheet.getRange('Students!D1').getValue();
var className = sheet.getRange('Students!E1').getValue();
var classTime = sheet.getRange('Students!F1').getValue();
var classAttn = sheet.getRange('Students!G1').getValue(); // adds all collected data to end of active sheet tab
sheet.appendRow([idNum,firstName,lastName,teacher,className,classTime,classAttn]); // identifies and adds data to appropriate class
// this adds to the bottom of entire sheet because columns D through H have functions
// need to figure out how to add it to the end of the list in first 3 columns only
var classSheet = ss.getSheetByName(className);
classSheet.appendRow([idNum,firstName,lastName]); // identifies and adds data to class attendance
var attendance = ss.getSheetByName(classAttn); var aVals = attendance.getRange("A1:A").getValues();
var aLastRow = aVals.filter(String).length; Logger.log(aLastRow); var newAttData = [[idNum,firstName,lastName]];
Logger.log(newAttData); attendance.getRange(aLastRow + 2,1,1,3).setValues(newAttData);
> Hope that helps! Cheers,
Ben

Jonas says:

Hi Ben, Great post indeed, thanks a lot! I’m importing an RSS feed and wonder if you know if there’s any way to append the rows directly on import to have them saved in real-time as the RSS-feed updates? Thanks,
Jonas

Bradley says:

Hi Ben! This is amazing! Seriously thanks for such a helpful post and especially for getting back to people so soon about their questions even nearly a year after your post. I want to use the save data function with the time driven trigger for a project, but mine is a little different:
I’m using the google analytics ad-on in google sheets to run a report to determine accumulated page views for specific urls over time. I’m turning everything into a pivot table then pulling that data in the pivot table to a new sheet, into a specific tab (multiple different tabs depending on what URLs i’m looking for). I’ve also set this report to automatically run once a week. Now this is where the save data function and time trigger come into play: I want to have the GA report run once a week, lets say Monday at 5am, I also want the save data function to run on Monday each week but at 7am, and have the save data to copy and paste those pulled page views into a new column for that new week. So with pulling data from my GA sheet into another sheet (using a vLookup and importRange), how could I best write that in my script? Especially since i’ll be adding new urls usually on a weekly basis. Hopefully that made as much sense as possible. -Bradley

Ben says:

Hey Bradley, Sorry for slow reply, just catching up on work after a being sick. You can select different sheets in Apps Script, using getSheetByName("SHEET NAME HERE") , which would save you needing to use any vlookups. So, you’d pull your GA data into one sheet and set that to run automatically. Then an hour or two later, your other function runs automatically, selects the sheet with the GA data in, selects the GA data and then copies that data into your other sheets that you’ve selected in your code. The line to select different sheets would be something like this: var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet1 = ss.getSheetByName("Sheet1");
var sheet2 = ss.getSheetByName("Sheet2"); And you can also select different spreadsheets if you want. Hope that helps! Ben

Cédric says:

Hello Ben,
Your last comment answering Bradley’s problem is precisely what I’m trying to do, select different spreadsheets.
How would the code be? I know of getActiveSpreadsheet(), as you are using it here above, but I couldn’t find anything like get SpreadsheetById() or similar. I was looking in https://developers.google.com/apps-script/reference/spreadsheet/spreadsheet-app, but nope. So I’m pretty happy you say it’s feasible…
Thank you, Cédric

Jason says:

I am getting the same issue, the code .getSheetByName and .getSheetId both do not seem to work or be available….

eijaz says:

Hi Ben,
cool examples!
Do you have an example blog of how one can implement Tasks API to a Google Forms, Google Spreadsheets and Google Calendars (team calendar)? I basically want my team to goto team site page on Google Sites, open page containing Google form for entering their project details and tasks. This information gets saved to a backend Google Spreadsheet (with me), as well as shows up on the Team calendar (also embedded in a page in Google sites). Once they complete their tasks, they can just visit the team calendar and tick their tasks to indicate finished. This logs their finished status directly in the backend Spreadsheet against their individual tasks. This is for a small team of 4 people only. any help to get me started with instructions/code would be most welcome.
Thanks.

Reed Rayher says:

Hi, this article has been very helpful and easy to follow, however, there is a modification I would like to make in the data saving feature. Instead of appending the newest saved values at the end of the list, I would like to insert the newest saved values at the top of the list. In the example you show, the newest values would go into cells A5, B5, C5 with the older values moving down. Can this done? If so could you please demonstrate how? Thank you!

Ben says:

Hi Reed, You can do as follows: Remove the line of code that says sheet.appendRow([url,follower_count,date]); and replace it with these new lines: // Get the current data
var currentData = sheet.getRange(5,1,sheet.getLastRow(),3).getValues(); // Move it all down one row
sheet.getRange(6,1,sheet.getLastRow() + 1,3).setValues(currentData); // Clear the top line and paste in the new data
sheet.getRange(5,1,1,3).clear();
sheet.getRange(5,1,1,3).setValues([url,follower_count,date]); I haven’t tested this code mind you, but it should give you enough to get this working. Cheers,
Ben

Abdul Qadeem says:

Hi ben, I am prey new to google sheet even. I want to append data from different cells of sheet1 and put it in row in new sheet2. Can can I do this using GAS. Currently I am doing this job manually. Thanks

Nathan Giamundo says:

This post was very helpful. Currently, I am using a workbook with 5 different tabs in it (Monday-Friday) and entering data in cells (A1:I51) for each sheet. I would:
1. Like to save the workbook as whole (all 5 sheets at once) and
2. Make a copy of the workbook when it saves so I can clear the original to use the following week. I figure this may be a lot to ask but I cannot figure out how to do this otherwise and this was by far the most recent and helpful post I could find. Any help would be appreciated. Thanks!

John Slegers says:

Hello Ben, This looks good. I will try to create this also for my sheet.
I have a few importxml formula’s but they don’t seem to update. =IMPORTXML("http://coinmarketcap.com/currencies/bitcoin/?paratmer=1","//span[@class='text-large']")

=IMPORTXML("http://coinmarketcap.com/currencies/bitcoin/?paratmer=1","//span[@class='text-large']") These formula’s are in a cell. How can I set the values from the result from the IMPORTXML to a specific cell. For example first formula on cell b2 and second formula on b3. John

Ben says:

Hey John, I see what you mean about not updating. Not sure why, as other IMPORT formulas I run update ok. The two formulas you’ve shared look the same to me? I would change the "//span[@class='text-large']" to "//span[@id='quote_price']" to ensure you get the correct price, in case the text-large class is used elsewhere on the website. Also, if you move the URL into it’s own cell, e.g. A1, and then refer to that with the formula it’s easier to make changes. You can actually drop the “?paratmer=1” too. So you could use: =IMPORTXML(A1,"//span[@id='quote_price']") You can then add or drop the final “/” of the url http://coinmarketcap.com/currencies/bitcoin to trigger a refresh… Cheers,
Ben

John Slegers says:

Hello Ben, Thanks for great tip. Works like charm.
Sorry it was indeed a double formula.
But it works. Thanks for your help. John

Ben says: Great! Happy to help. Yes, seems to be updating ok in my example too now. Cheers. John Slegers says:

Hello Ben, I have one question. Where did you find the quote_price in the xml? =IMPORTXML(A1,”//span[@id=’quote_price’]”) Is there a function to see al the different id’s? I want to use the api to get a Euro price. https://api.coinmarketcap.com/v1/ticker/bitcoin/?convert=EUR And use the price_eur id Kind regards, John Slegers

Ben says:

Bitcoin IMPORT query id

Hi John, I used the Chrome Developer Tools to look at the underlying HTML/CSS for the website, as in this image: On a Mac, you can access the Chrome Developer Tools with Command + Option + I. However, if you need to use the API to get the EURO price, then you’re going to need Apps Script (intro to APIs here). Theoretically it should be possible, how difficult depends on how open the API is and how good the documentation is. Cheers,
Ben

Sam says:

I modified the script slightly, just to add a few more columns for other social media sites, and now nothing happens when it runs.
Any idea why?? // custom menu function
function onOpen() var ui = SpreadsheetApp.getUi();
ui.createMenu(‘Custom Menu’)
.addItem(‘Save Data’,’saveData’)
.addToUi();
> // function to save data
function saveData() var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var date = sheet.getRange(‘Sheet1!A1’).getValue();
var facebook = sheet.getRange(‘Sheet1!B1’).getValue();
var twitter = sheet.getRange(‘Sheet1!C1’).getValue();
var instagram = sheet.getRange(‘Sheet1!D1’).getValue();
var youtube = sheet.getRange(‘Sheet1!E1’).getValue();
var youtubeviews = sheet.getRange(‘Sheet1!F1’).getValue();
sheet.appendRow([date,facebook,twitter,instagram,youtube,youtubeviews]);
>

Przemek says:

I have the same issue.
Code looks good but does not return any data. Anyway…
Ben Great tutorial! I hope you will continue such a great job 🙂 Kind regards
Przemek

Ben says: Hey Przemek, Hmm Ben says:

Hey Sam, must have missed this comment originally, sorry ’bout that. You might need to run your onOpen function again from the Script Editor and then try your menu again to run the main sheet. It’s probably just running the old function each time at the moment. Hope that helps! Ben

Chris says:

Hi Ben! Great post. Is it possible to disable the core autosave of google spreadsheet? The scenario is that users work in this spreadsheet that is shared and anyone with the link can edit but users are changing their input and ouput. Best Chris

investmse says:

thank you for you great tutorial. it works fine to me, fetching data from worldcoinindex.com (I scrap the btc cap, alt cap and mrkt cap). though strangely, the value are never exactly matching (first problem) and when saved with the menu they are not refreshing the cell function is (for market cap) :
=IMPORTXML(A1;”/html/body/div[1]/div/div[8]/span[2]”) and the script is :
// custom menu function
function onOpen() var ui = SpreadsheetApp.getUi();
ui.createMenu(‘Custom Menu’)
.addItem(‘Save Data’,’saveData’)
.addToUi();
> // function to save data
function saveData() var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var url = sheet.getRange(‘Feuille 1!A1’).getValue();
var date= sheet.getRange(‘Feuille 1!B1’).getValue();
var btccap = sheet.getRange(‘Feuille 1!C1’).getValue();
var altcap = sheet.getRange(‘Feuille 1!D1’).getValue();
var mktcap = sheet.getRange(‘Feuille 1!E1’).getValue();
sheet.appendRow([url,date, btccap, altcap, mktcap]);
> Would you have any idea for it to refresh properly the data and save them correctly, please?

Herman says:

Hi, I’m using the codes for Instagram, but everytime in google spreadsheet it says Error, how is that possible? Thank you in advance. Herman

Ben says:

Hey Herman, These import formulas are sometimes volatile and stop working. I post the most up-to-date versions in this post: https://www.benlcollins.com/spreadsheets/import-social-media-statistics/#instagram Cheers,
Ben

Sumit Kumar says:

Hi Ben, I am trying to save view data to google sheet from google app script’s client side on every control filter change. Is there any function/way to do so. Thanks
Sumit

Ben says:

Hey Sumit, I’m not quite sure what you’re after but I don’t think you can do what you’re trying to do. The onEdit() trigger can be used to run a function each time a change is made to values in your spreadsheet, but it isn’t triggered by filters. Cheers,
Ben

Matt says:

Just curious, how does it know to start appending rows at the 5th row? Is it because headers were placed there?

Ben says:

Exactly. The line that writes the data into the spreadsheet: sheet.appendRow([url,follower_count,date]); will take the first blank row, which happens to be the 5th row the first time it’s run.

Matt says: Makes sense, thanks Ben! These tutorials are great. phamduytung says:

Instead of appending the newest saved values at the end of the list, I would like to insert the newest saved values at the Active range of the list. In the example the newest values would go into cells B5, C5, D5 with the older values moving down. Can this done? If so could you please demonstrate how? Thank you!

Ben says:

Yes, this can be done! Try this script for the save data function: function saveData() < var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
sheet.insertRowsBefore(5, 1); var url = sheet.getRange('Sheet1!A1').getValue();
var follower_count = sheet.getRange('Sheet1!B1').getValue();
var date = sheet.getRange('Sheet1!C1').getValue(); sheet.getRange(5,1,1,3).setValues([[url,follower_count,date]]); > It’ll insert a new row at position 5, then paste the new data in there. Cheers,
Ben

ForteD says:

Thank you man, this is awsome, but I would like to replace:
var sheet = ss.getSheets()[0];
by:
var sheet = ss.getActiveSheet();

Vicky says:

Hi Ben,
Thank you very much for coming up with such a useful script. I am very new to script writing and currently trying to revise your provided script to suit my needs. May I check is it possible to save the selected fields input into a specific spreadsheet? How should this “sheet.appendRow([WIP,follower_count,date]);” be revised to allow appending it to a specific spreadsheet’s next empty row?

Ben says:

Hi Vicky, To append to a specific spreadsheet, you’ll want to change this line: var ss = SpreadsheetApp.getActiveSpreadsheet(); to this: var ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc1234567/edit'); where you put in the url of the spreadsheet you want to paste values too. See more here: https://developers.google.com/apps-script/reference/spreadsheet/spreadsheet-app#openbyurlurl Hope that helps! Ben

vicky says:

Hi Ben, if i am intending to append it to a specific tab of the same spreadsheet, do I change this line: var ss = SpreadsheetApp.getActiveSpreadsheet(); to this: var ss = ss.getSheetByName(‘tab name’)?
I have tried doing this and it is giving me an error. Hope that you can help me with it.

vicky says:

Hi Ben, if i am intending to append it to a specific tab of the same spreadsheet, do I change this line: var ss = SpreadsheetApp.getActiveSpreadsheet(); to this: var ss = ss.getSheetByName(‘tab name’)?
I have tried doing this and it is giving me an error. Hope that you can help me with it.

Ben says:

Try this: var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('tab name'); That should work for you! See more here: https://developers.google.com/apps-script/reference/spreadsheet/spreadsheet#getsheetbynamename Cheers,
Ben

raymond says:

thank you ben it really helps me allot but i am going to do some modification in the current example im gonna use it in my purchase order using same concept thought my problem is that i cannot save the data in a multiple row the current sample only work on single row when i click save

Solli says:

Hi Ben! My case:
I am using Google Forms with Google Sheets as base. In Google Sheets I have an ImportRange function from an different Sheet. The add on “Form publisher” copies the base Sheet, but then the Import range data is gone, because I hafto go in to the new sheet and click “allow accsess”. I need a script to copy the intire ImportRange area (A1:G1600) with intervalls. And the area needs to be overwritten so the area stays in the same position (using the data for further calculation). // custom menu function
function onOpen() var ui = SpreadsheetApp.getUi();
ui.createMenu(‘Custom Menu’)
.addItem(‘Save Data’,’saveData’)
.addToUi();
> // function to save data
function saveData() var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName(“data”); So far so good… but: var nr = sheet.getRange(‘data!A1:G1600’).getValue();
sheet.appendRow([nr]);
> and: overwrite needs to be added. Greetings from Norway

Solli says:

I got this to work: function copyRange() <
var sss = SpreadsheetApp.openById(‘1VuXAS5BSr_wqbWJ1dS-7ee6aFo2WonQc-TKdVYEfWl0’); //replace with source ID
var ss = sss.getSheetByName(‘data’); //replace with source Sheet tab name
var range = ss.getRange(‘A2:F10’); //assign the range you want to copy
var data = range.getValues();
var tss = SpreadsheetApp.openById(‘1VuXAS5BSr_wqbWJ1dS-7ee6aFo2WonQc-TKdVYEfWl0’); //replace with destination ID
var ts = tss.getSheetByName(‘ark’); //replace with destination Sheet tab name ts.getRange(ts.getLastRow()+1, 1,9,6).setValues(data); //you will need to define the size of the copied data see getRange() > Just need it to be cleared first 😉 Ref: [https://stackoverflow.com/questions/12291549/copy-a-range-from-one-spreadsheet-to-another]

Solli says:

function removeRange() <
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheetByName(‘ark’);
sheet.getRange(4,1,12,6).clear();
> //VI MÅ FÅ DE TIL Å GÅ SAMTIDIG // rydd og kopier
function copyRange() <
var sss = SpreadsheetApp.openById(‘1VuXAS5BSr_wqbWJ1dS-7ee6aFo2WonQc-TKdVYEfWl0’); //replace with source ID
var ss = sss.getSheetByName(‘data’); //replace with source Sheet tab name
var range = ss.getRange(‘A2:F10’); //assign the range you want to copy
var data = range.getValues();
var tss = SpreadsheetApp.openById(‘1VuXAS5BSr_wqbWJ1dS-7ee6aFo2WonQc-TKdVYEfWl0’); //replace with destination ID
var ts = tss.getSheetByName(‘ark’); //replace with destination Sheet tab name ts.getRange(ts.getLastRow()+1, 1,9,6).setValues(data); //you will need to define the size of the copied data see getRange() Getting theese two functions together was not perfekt, I need a delay between them. Any ideas?