Home > OS >  Is it possible to generate a brand new spreadsheet from an existing one using google appscript?
Is it possible to generate a brand new spreadsheet from an existing one using google appscript?

Time:07-09

The title says it all. I can't find a function or code that lets me create a new spreadsheet from my existing one.

I honestly have no context for this, I'm just experimenting with what I can and can't do with app script google.

CodePudding user response:

Simple use the SpreadsheetApp Spreadsheet.copy(name)

  • Related