I have a Microsoft .XLS/ .XLSX spreadsheets stored on the Google Drive ( not on Google Docs). Looking for a Google App Script to read spreadsheet from Google Drive without any upload/ conversion to the Google Doc. I had written following function and try to open a excel using:
var xl = SpreadsheetApp.open(ImportXLSM.xls);
and than excel the sheet using:
xl.getSheetByName(sheet1);
but it shows an error : Script function not found: doGet
I am new to Google Script, please help!!!!