I have a feature in my spreadsheet which brings up a UI in which the user picks a xls-file from the harddrive and then uploads it. I want to read the data in that file and update my spreadsheet from it, but I can't quite figure out how. I can basically read the contents of the file via e.parameter.file.contents after the file has been uploaded, but everything's ugly and jumbled since it's the binary data of an xls-file. Is there a good way of reading the data? Like converting it to a google spreadsheet somehow?

I really want to avoid the hassle of having to manually convert the xls and then upload that file to the spreadsheet if possible.

Thanks!

link|improve this question

76% accept rate
feedback

1 Answer

To convert it to a Google Spreadsheet you'll have to upload the file to your Google Docs. I think the "converting" upload is possible via the current Apps Script API. But you could use the UrlfetchApp to send the file to the Google Documents List Data API where you can upload "converting" it. This is not a very straightforward procedure but can be done.

Using this solution approach you'll face tight file sizes limitation of Google Apps Script file upload, urlfetch, etc. I think it would be better if you redirected your user to the Google Docs page and have them upload the file there (converting it to a google spreadsheet naturally), then have they just paste the Google Spreadsheet link in your app, where you could easily read it's content.

link|improve this answer
Alright.. Yeah, Like I said; having the user first upload the file and then paste the URL is an easy solution, but which I'd rather avoid if possible without too much hassle. These xlm-files wont be larger than ~40kb so I'm guessing that shouldn't be an issue. Have you got any more info on using "UrlfetchApp to send the file to the Google Documents List Data API"? Thanks! – Clox Jan 3 at 15:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.