Reputation: 142
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
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