Useful links: Developer Documentation Tutorials Help forum Google Apps Developer Blog
6
votes
1answer
175 views
Is it possible to define a new function in Google-docs spreadsheet?
Is it possible to define a function in Google Spreadsheets that can be used in any cell?
It would be helpful if I could define and use functions that refer to other cells in the same way that I can ...
4
votes
2answers
1k views
Best way to connect a spreadsheet to web database
I'm using web based database for which I need to add spreadsheet capabilities to its front end. I was thinking that I could use Google Docs Spreadsheets. Their Google App Script seems to have the ...
4
votes
2answers
3k views
Import JSON data into Google Spreadsheet
I am pulling data down from a webservice and it is formated as JSON. I am writing a google apps script for google spreadsheet that will populate the data form me. my problem is, I can't seem to get it ...
3
votes
1answer
177 views
How to skip hidden rows while iterating through Google Spreadsheet w/ Google Apps Script
I have a Google Spreadsheet with many hidden rows in it, and I want to skip them when iterating through a list of rows in the spreadsheet.
It's mainly an efficiency issue, as I'm dealing with over ...
3
votes
1answer
345 views
Why does my Date object in Google Apps Script return NaN
Does Google Apps Script use a funky version of EcmaScript that can't parse a date? How can I parse the date 2011-04-11T19:25:40Z into a JavaScript Date Object in Google Apps Script?
My log output ...
3
votes
5answers
467 views
Google Apps macros - how do they compare to Office VBA macros?
Do any of you use the javascript macro capabilities of Google Apps, particularly for spreadsheets? How do the capabilities compare? Is there anything that Google Apps can't do that can be done with ...
3
votes
2answers
557 views
What is the email limit on Google Apps Script?
Can someone tell me if there is a webpage that lists the official Google limit on emails sent from a Google Apps Script?
In testing my little script I got a Service invoked too many times: email (# ...
2
votes
1answer
150 views
Can I generate a file from Google Spreadsheets Script?
I'm using google spreadsheets to prototype a bunch of numerical data for something I'm doing. Is there a way to essentially export a subset to a text file? Effectively, what I'm aiming to do is export ...
2
votes
1answer
275 views
Problems using the goo.gl API from google apps script
I'm trying to query the goo.gl API from inside a Google Apps Script. The problem I'm seeing is the following error message:
Request failed for ...
2
votes
2answers
1k views
How to copy a row from one google spreadsheet to another google spreadsheet using google apps script?
Hello
I wanted to copy a particular row from one spreadsheet to another spreadsheet using google apps script.Can anyone please help me to get the answer for this.
2
votes
1answer
138 views
Whats an easy way to get the contents of a Google Spreadsheet as JSON using Google Apps Script?
Whats an easy way to get the contents of a Google Spreadsheet as JSON using Google Apps Script?
2
votes
1answer
162 views
Is there a way to access the Google Data API from the Google Apps Script environment?
Google Apps Script is the javascript-based environment for running scripts on Google Documents, amongst other things. You can do things like copy data between spreadsheets and generate emails.
The ...
2
votes
3answers
696 views
Is it possible to automate Google Spreadsheets Scripts (e.g. without an event to trigger them)?
Does anyone know if it's possible to use Google Apps Scripts to run without needed a manual event? Meaning - I would like to set up a spreadsheet to send a form every day at a specified time. I have ...
2
votes
1answer
694 views
Display HTML-formated message box in Google Apps Script?
The Browser.msgBox("hello") method lets me display the text "hello" to the user in a message box, but if I put any HTML in there, for example "Hi there", the user just sees the HTML tags.
Is there a ...
1
vote
0answers
25 views
Google Apps spreadsheet script doesn't always finish iterating, works fine otherwise
I'm trying to create a script that looks through a spreadsheet of student data one row at a time and emails a student and their parent if the student's grade is less than 60. The columns in the ...
1
vote
1answer
32 views
Using Google Script, how can I insert an image into a table cell?
I have been successful in figuring out how to append an image using the answer below but I need to take it one step further.
http://stackoverflow.com/a/7970134/1208721
Using Google Script in Apps, ...
1
vote
3answers
76 views
Can you use Google Apps Script with Python?
Google Apps Script looks to be pretty perfect for a school project, however I'm not terribly comfortable with JavaScript and the entire rest of the project is going to be done in Python. Is there a ...
1
vote
1answer
61 views
Building a 'bot' that lives in a Google Spreadsheet
I'm wondering if there's Google Apps API support for building a bot that lives in a Spreadsheet and interacts with users via the in-document chat features. I can't find a Google Apps API that defines ...
1
vote
2answers
139 views
Google apps script: how to persist data in spreadsheet between different function calls?
In a Google spreadsheet using the Script Editor, I do function calls, but I am not quite sure if the best way to store persistant data (data that I will continue to use) is to use global variables ...
1
vote
1answer
151 views
Add images to Google Document via Google Apps Script
How can you add images to a Google Document (not Spreadsheet or Presentation) via Google Apps Script. I don't see an addImage method. Surely the team would not have left this out.
...
1
vote
1answer
81 views
Email via Google Apps Script from another email address
I'm familiar with how to send emails via Google Apps Script (http://code.google.com/googleapps/appsscript/articles/sending_emails.html). It's super cool. But is there a way I can email from Apps ...
1
vote
1answer
136 views
Google Apps Script: how to access or call “Send this form to others”?
I have a form attached to a Google Apps spreadsheet. It's a form to let my coworkers submit agenda items to our weekly review meeting. I'm writing a script to automatically email a reminder to the ...
1
vote
1answer
282 views
Download a series of Google Docs (.csv files) to my site using PHP
My conundrum is as follows. I have a lot of data stored in various spreadsheets on Google Docs. Compiling all of the data into a single spreadsheet (for analysis purposes) hit the size limit. Seeing ...
1
vote
1answer
360 views
Google Apps Script - Document and Announcements
So here's the scenario I've been trying to solve. A user comes to our site, uploads a file, that file is sent to a google docs collection and generates a link to that doc which is emailed to an ...
1
vote
1answer
96 views
What's the equivalent of STDOUT in Google Apps Script?
I would like to be able to express data in a Google Spreadsheet as a web service that returns JSON on request. Even though this is conceptually similar to similar questions, they tend to fall back to ...
1
vote
2answers
433 views
How to run Google Apps script from HtmlUnit?
I have a link in a Google Sites page that runs a Google Apps script. It works fine when I manually click the link in Firefox.
Everything seems to work OK when I do the same using HtmlUnit. With ...
1
vote
0answers
154 views
In GoogleApp Spreadsheet, how do I make onEdit event handler react to drag copying?
My onEdit event handler fires just fine when I edit spreadsheet cell manually, or when I paste into it by Ctrl+V, but completely ignores when I do 'drag-copying'.
'drag-copying' is when you point the ...
1
vote
0answers
323 views
Google Apps Script JDBC connection problem
I have problem to connect to any mysql database using jdbc connector in google apps scripts, I'm using tutorial code:
var conn = Jdbc.getConnection("jdbc:mysql://host(or ip):3306/database", ...
1
vote
0answers
375 views
OAuth issues with Google App Engine And Google AppScript integration
I am trying to use Google APPScript in Google Spreadsheets and have an OAuth issues.
The Spreadsheet and Google App application are both protected by Oauth provided by Google
as I am using google ...
1
vote
3answers
184 views
Webservice to convert timzezone name to GMT Offset
Does anyone know a webservice that converts a timezone string to the corresponding GMT Offset?
Meaning I like to send a HTTP request like this:
http://servcer.com/getgmtoffset?timezone=Europe/Zurich
...
1
vote
1answer
208 views
Update custom function automatically
I have a custom function as a Google Spreadsheet script, which depends on some other cells' values. It runs ok the first time I put it in a cell, but then when I change the data in the other cells it ...
1
vote
1answer
674 views
How to merge date and time as a datetime in Google Apps Spreadsheet script?
I've a Date column in 'dd/mm/yyyy' format and Time column in 'HH:MM AM/PM' format in Google App spreadsheet. In app script, I want to join these 2 values as a datetime. How can I do this?
Example- ...
1
vote
1answer
188 views
How do I use this Google Apps Script?
http://code.google.com/googleapps/appsscript/class_range.html#getFormula
Is there a script I can install or do I need to write my own? After that?
1
vote
2answers
155 views
How to show a progress report to the user in Google Apps Script?
I have a simple script that will send out a bunch of emails but these take time to send and I want to show the user a scrolling window with the emails addresses as they are sent (or, a progress bar ...
0
votes
0answers
16 views
jQuery UI with Google Apps script
Is it possible to use a jQuery UI widget with a google apps script application?
I have a textbox and I would like to use a date picker on it.
0
votes
1answer
52 views
Google spreadsheets Query Language get data from many other sheet
How I can get data from many sheets? In documentation Reference data from other sheets is an example
=Sheet1!A1
I wrote test query and it's works
=Query(otherSheet!A1:P999, "select A, B, C")
But ...
0
votes
0answers
56 views
Updating Google Site with content from another page
Here is my situation: My company relies heavily on Google for email, calendar, docs, etc. Every department maintains a Google Site with department info on it, and I have recently been handed the task ...
0
votes
2answers
57 views
How to generate global, named javascript functions in coffeescript, for Google Apps Script
I'd like to write Javascript scripts for Google Apps Script using CoffeeScript, and I'm having trouble generating functions in the expected form.
Google Apps Script expects a script to contain ...
0
votes
1answer
63 views
Google Apps - script to summarise data not updating
I have a Google spreadsheet of timesheet data; it has a sheet for each month, each sheet is a lot of six column blocks, one block per client.
I have created a summary sheet that goes and gets the ...
0
votes
1answer
36 views
Modifying a drawing using Google Apps Script
Has anyone found support for creating or changing a drawing using Google Apps Script? I've looked through the Google documentation, but I don't see any classes for drawing. I found out how to build ...
0
votes
2answers
75 views
Javascript calling eval on an object literal (with functions)
Disclaimer: I fully understand the risks/downsides of using eval but this is one niche case where I couldn't find any other way.
In Google Apps Scripting, there still is no built-in capability to ...
0
votes
0answers
53 views
How to link a google apps script in a google site
I'm creating a google site for my company and I'm utilizing google apps scripts to do a little extra on the site. I would really like to link a script to a drop-down menu that I made. However, I can't ...
0
votes
1answer
44 views
How to configure a trigger for a Google AppScript?
I've found some Google AppScript code I'd like to mash-up which plugs into the Twitter API and e-mails me certain tweets: ...
0
votes
1answer
129 views
How to pass parameters to Google Apps Script Gadget embedded in a Sites Page?
I have a Google Apps Script gadget that is embedded in a Google Sites page. I would like to pass the gadget a page parameter, such that when the page is opened with URL like:
...
0
votes
1answer
50 views
Read data from uploaded file
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 ...
0
votes
2answers
175 views
Formatting numbers within Google Apps Script javascript code
I'm writing a script that creates fixed-width-text output of the contents of a Google Apps Spreadsheet. I retrieve all the values of the current range using the range.getValues() method, then I loop ...
0
votes
2answers
144 views
OnEdit-trigger combined with cell-functions
I have an onEdit-script which calculates the value of a cell based on the content of a row of other cells.
I need this script to be in an onEdit-trigger rather than a regular cell-function because I ...
0
votes
1answer
61 views
Adding google apps script though google API?
I am writing a program that creates a new spreadsheet, then exports data from our servers to this spreadsheet using Google API. Then the user should edit this data and reupload it back to our server.I ...
0
votes
1answer
80 views
Set the content of a cell to a function?
I have a spreadsheet in which I want to be able to expand the number of columns using a function rather than using auto-fill because the new cells are getting filled with content based on complex ...
0
votes
2answers
66 views
Modify File sharing settings using Google Apps Script DocsList Service?
I have a requirement to change the sharing settings on a number of files hosted in Google Docs. I know that I can use DocsList Services with Google Apps Script if I want to add or remove Editors or ...