Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

I have seen this link & learned how to fetch data from a spreadsheet into the gadget from here.

But, is there any way, how to write back the Gadget data to spread sheet ?

Please suggest.

share|improve this question
Since iGoogle is being/has been shut down, this question will not help future readers. – Al Everett Nov 30 '12 at 13:44

closed as too localized by Al Everett, Eight Days of Malaise, Sathya Dec 2 '12 at 18:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

According to this blog post you can embed gadgets in to a spreadsheet or use a spreadsheet as a data source.

Looking at the Google Spreadsheet API you are able to treat a spreadsheet as a Table. This includes the functionality of inserting, retrieving and updating data within the table.

Take a look at this section of the Developers API documentation. It gives you an example of how to create, retrieve and update a Table Feed within a Google spreadsheet.

You should be able to use this as a base to save your Google Gadget data.

Note: The Table Feeds are not visible to the UI - they are only accessible via the API.

share|improve this answer
The <entry> probably for Table Feed which I think I am unable to use within my gadget. or How do I? – user7354 Jan 10 '11 at 5:03