Wanmi Siangshai
Wanmi Siangshai

Reputation: 142

Is it possible to write data to google sheets using JavaScript?

I'm using the Google charts query for selecting a data from google sheets and after processing the data, I want to write or push it back into google sheets. Is it possible to do this using JavaScript?

Upvotes: 0

Views: 116

Answers (1)

Thijs Lowette
Thijs Lowette

Reputation: 165

Good news: yes, you can do with JavaScript.

More info: https://developers.google.com/apps-script/guides/rest/quickstart/js#prerequisites

Also, don't forget: with JS you can do XMLHTTPRequests, which allows you to work with a lot of API's. :-)

Have fun!

Upvotes: 2

Related Questions