Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8537359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T10:53:01+00:00 2026-06-11T10:53:01+00:00

I have a sheet built that’s pulling in data from an XML feed. I

  • 0

I have a sheet built that’s pulling in data from an XML feed. I have a script written that will then break out that one sheet into several other sheets based on the contents of a particular column. This all works fine.

My problem is that after I pull in the data from XML and before I split it into new sheets, I add some columns, do some formatting, etc. And then when I copy a row (using appendRow()) to the new sheet, I lose the formatting and formulas.

The code I’m using currently Is:

var datarange = template_sheet.getDataRange();

for (var i in dataRange) {
   workbook.getSheetByName(dataRange[i][6]).appendRow(dataRange[i]);

}

Is there a way to do what I’m looking for? Or do I need to breakout the original data into separate sheets first, then loop through each sheet and do the formatting/formulas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T10:53:03+00:00Added an answer on June 11, 2026 at 10:53 am

    You should use the method copyTo(range, optAdvancedArgs) of the Range object.

    var datarange = template_sheet.getDataRange();
    for (var i in datarange)
      datarange[i].copyTo(
        workbook.getSheetByName(dataRange[i][6]).getRange(
          workbook.getSheetByName(dataRange[i][6]).getMaxRows()+1, 1));
    

    should do the trick

    in more legible:

    var datarange = template_sheet.getDataRange();
    for (var i in datarange) {
      var sheet = workbook.getSheetByName(dataRange[i][6].getValue());
      datarange[i].copyTo(sheet.getRange(sheet.getMaxRows()+1, 1));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a sheet A that looks something like this: Name Phone Number Title
I have a sheet full of some raw data, about 20,000 rows and 50
I have an excel sheet that has several headers. One of the header is
I have a project that includes files from a different project. I am getting
I have a Ruby on Rails app that I built myself, but which needs
So I have this google script that I want to use to create charts
I have to port an algorithm from an Excel sheet to python code but
I have a simple Document based Core Data app (built around the standard Apple
I have an array of arrays of data. so the basic format is $sheet
The official data sheet of Microsoft Surface says that there is no audio input

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.