Questions related to accessing a Google Spreadsheets document

learn more… | top users | synonyms

0
votes
1answer
24 views

Python/gspread - how can I update multiple cells with DIFFERENT VALUES at once?

To update a range of cells, you use the following command. """Select a range""" cell_list = worksheet.range('A1:A7') for cell in cell_list: cell.value = 'O_o' """Update in batch""" ...
0
votes
0answers
4 views

Geocode Service Invoked Too Many Times

I am trying to write a script for Google spreadsheets to GeoCode selected rows. However, I run into the error that the Geocoder service has been invoked too many time even if it is a new day. This ...
0
votes
1answer
28 views

Display Spreadsheet data in Sites with Html Service

I displaying What I want to do with similar to this tutorial but instead of using UI Services to display the table, I would like to use HTML Services. Someone from this question mentioned that you ...
0
votes
1answer
22 views

multiple column conditional formatting google apps script

I have searched for an answer to this, but I cannot find one anywhere. I am trying to set a background color of an individual cell based on the contents of that cell and another cell. For example, ...
0
votes
0answers
13 views

Get the cell value from dictionary with cell location

I have a spreadsheet of two cell desk/user pairs. I have created a dictionary of the desk name and cell location. I am trying to get the value of the user from the other cell, but I'm not sure how to ...
0
votes
0answers
23 views

How do I copy a number of rows a certain amount of times and insert the copies after each other in a different sheet?

I want to copy several rows varying amount of times based on the values of one of the columns. So that if A1 contains the number 30, A2 contains the number 10 and A3 contains the number 50 I get in ...
0
votes
0answers
4 views

How to set sheet protected during google script running

This question is about Google spreadsheet. I have a spreadsheet that shares with multiple people. I'm using a script to update the sheet contents as the well. My question is when I running the ...
0
votes
1answer
15 views

Problems with javascript in Google Docs Spreadsheet

Ok, the problem is that there is no way to set the range explictly without all the information on width and height. If I have 13 cells, why wouldn't it just write 13 cells? So, here is the script: ...
0
votes
1answer
29 views

How to post to Google Docs Form directly

I'm working on a project where i need to post the data i acquire to a Google form and obtain the data from the spreadsheet. I cannot use google apps script and need a method using the direct POST ...
0
votes
1answer
35 views

Account balance - Google Spreadsheet SQL Query

A B C D E F G date from to amount account 5/5/2013 bank food 200 bank 5/5/2013 work bank 1200 food 5/5/2013 bank ...
0
votes
0answers
14 views

return cell value from matched row in spreadsheet

This question should be a very common question, but i can't find the right solution. Maybe i have problem with the terms.. please feel free to correct me. The question: 'product' sheet with the ...
0
votes
1answer
21 views

Google Spreadsheet Script - How to Transpose / Rotate Multi-dimensional Array?

I'm trying to create a function that takes in any array and transpose it so that rows turns to columns and columns to rows. Not sure what I've done wrong or missing but keep getting this message ...
0
votes
0answers
23 views

Cells containing custom functions return “NaN'” when spreadsheet is not open. (Apps Script webapp accessing google spreadsheet)

As a high school teacher, I record all of my grading in a Google spreadsheet. I have written custom functions within that spreadsheet that are accessed in the spreadsheet. That all works fine. I also ...
0
votes
2answers
33 views

Google Spreadsheet function gets data from all sheets instead of just one

This is the function I have written, which sends an email to notify someone whenever a specified cell/row/column is edited, and I have it set to trigger onEdit. It works as is. /* This function send ...
1
vote
0answers
10 views

copy range of cells from a spreadsheet and paste into a form edit

I have a google form set up for an accident report. I currently have a google spreadsheet with all of the employee names. I can manually copy the range of cells that house the employee names, go to ...
0
votes
0answers
3 views

Protecting a range without limiting sort/filter in google spreadsheet

I have a shared spreadsheet with some formulae that I don't want anyone to alter. I have created a named range and locked it but it seems to stop other users from filtering any columns that contain a ...
0
votes
0answers
21 views

Google Apps Script to Email Active Spreadsheet

I found a script online that takes the current sheet, copies it to a temporary new spreadsheet, converts it to PDF and emails it. I was able to get it working but trying to set it up so that it only ...
0
votes
2answers
54 views

Iterate a function through several rows in a Google Spreadsheet

Here is the script I have written. It puts a time stamp at the end of the row whenever that row is edited. function setDate() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet ...
0
votes
1answer
21 views

How to define headers in spreadsheet to get gsx$title attribute in JSON response from google spreadsheet API?

I am planning to use Google spreadsheet API to fetch data from a spreadsheet and render it in my mobile app using Sencha Touch. I have seen few blogs and tutorial which explain how to fetch and parse ...
-2
votes
0answers
25 views

How to load Google Finance values when the spreadsheet is not open [closed]

I know next to nothing about programming so let me know if you need additional info to post solutions. My roommate helped me set up a Google spreadsheet to keep track of various financial data for ...
0
votes
1answer
9 views

Lookup field in table in google spreadsheet

I have the following table in a google spreadsheet, this will be the main sheet where the scores are entered: A B C D E 1) Player Game 1 Game 2 Game 3 2) ...
0
votes
2answers
34 views

Update Date or Send Email when a Specific Range is Edited

How do I tell cell C2 to set the date when cells A2 or B2 have been updated? Further, how do I trigger the sending of my email function when A2 or B2 have been updated? My issue is that onEdit fires ...
0
votes
0answers
24 views

How To Use an Apps Script To “Copy-PasteValue” Dynamic Data In a Google Spreadsheet at a given time?

I have a google spreadsheet that imports and modifies data from an online source that updates every hour. I wish to pull a static copy of the 10pm update from the spreadsheet—essentially a copy-paste ...
0
votes
1answer
19 views

Google Spreadsheet ImportXML error #NA not received any data as a result of XPath queries

I have a problem with scraping one website - motoallegro I want to get title of all ads in this page So I set formula in google spreadsheet: ...
0
votes
0answers
19 views

My requirement is to read the data from google spreadsheet, then format (apply some styles) to the data, add some images to the data and fin

google app script: I am looking for a customized pdf report using google app script. My requirement is as follows Read data from google spreadsheet (not everything in the spreadsheet, only the ...
0
votes
0answers
39 views

No authorization when trying to connect to Google Spreadsheets through webserver using PHP and Zend Gdata

I'm trying to add data to a spreadsheet with a php script using the Zend Gdata helper class, if i run the php-script on my xampp on my home-pc everything works just fine, but if i upload the file on ...
0
votes
1answer
24 views

Google Spreadsheet' API request limit

is there any limit on the number of request I can make in a day to the Google Spreadsheet API?
1
vote
1answer
77 views

How do you Import data from a Google Spreadsheet to Javascript?

I simply wish to know how to take the first cell of a spreadsheet either on google docs or from and excel document and output it as a string in javascript in an html document. What I have: An html ...
0
votes
0answers
13 views

Summing some rows data

I've some data in a table. The data is organized like: col1 col2 col3 col4 a 0 0 1 b 1 3 4 c 0 2 5 a 1 1 2 c 3 2 4 a 4 0 0 I'd like to write a formula/script that ...
0
votes
1answer
37 views

OnDataChange event for Google Spreadsheet in JavaScript?

I have an application that extracs data from google spreadsheet (embedded via iframe) to update a model of a single page app written in Angular + ruby in the backend. I want to update the Angular ...
0
votes
1answer
45 views

Convert time stamp to date in query select statment in google spreadsheet

I am importing data from a form data collection sheet and I would like to change timestamp to just date to make it easier for me to filter. What I want to do is to be able to filter data based on the ...
0
votes
1answer
27 views

User Input in Google Spreadsheet Script

I have a script now that creates a big matrix based on all kinds of variables. A few variables change periodically and their values are hard-coded so I need to update the script often. How can I ...
0
votes
1answer
49 views

How do I get the index of a column by name in a Google Spreadsheet script?

I'm trying to figure out how to retrieve the index of a column with a specific name in a Google Spreadsheet script. I'm working on a custom Google Script that automatically adds timestamps to a ...
0
votes
1answer
30 views

List feed from Google Spreadsheet is missing rows

B"H I am trying to import some data from a google spreadsheet. It is a simple list of items with a few columns. It was working perfectly for a while but now its giving me trouble I am using the ...
0
votes
0answers
17 views

Populate Cells in Google Drive Spreadsheet Based on Data in Other Cells

I'm trying to figure out how to populate a cell based on the data in a couple of cells in that row, and then do the same for every cell in that column. The column I want to populate is column C, ...
0
votes
1answer
50 views

How can I apply a formula to new, form-inserted rows of data in Google Spreadsheets?

I would like my Google spreadsheet to automatically apply formulas found in cells F2 to H2 to all new, form-inserted rows. You can view the spreadsheet here. The formulas are: F2: =IF(B2, ...
0
votes
2answers
44 views

Google Apps Script Caching Large Data

I'm writing a script for Google Spreadsheet that pulls financial data from an external server. The live feed is a single JSON which contains all the data required. However I'm faced with the problem ...
0
votes
0answers
34 views

how to display data from zend_gdata spreadsheet in table view?

My English is bad. :( How can I display the data from a zend_gdata spreadsheet in a table view? I get the data from the Zend_Gdata SpreadSheet: $user = 'login'; $pass = 'pass'; ...
0
votes
0answers
23 views

Import XML Data on Pinterest

I'm looking to get the time signature from pins that are on Pinterest. For the sake of this example we will use: http://pinterest.com/pin/44824958764005793/ From the above webpage I would like to ...
0
votes
1answer
42 views

How to move sheet within Google Spreadsheeet using apps script

I want to move the sheet within spreadsheeet using apps script. How to do it? Best live!
0
votes
1answer
45 views

Google Apps Script - percentage formatting and arrays

I am perplexed by the following. I have data on a google spreadsheet that I am pulling into an array. I am doing some modifications on the data and then putting it back into the spreadsheet. My ...
1
vote
1answer
34 views

Google Spreadsheet script to Return table of subtotals

Here is my function to import a range (6 columns ; and lots of rows) from active spreadsheet and return subtotal grouped by the 5th column. var sheet = SpreadsheetApp.getActiveSheet(); var rows = ...
0
votes
0answers
34 views

Import data to excel for individual cells

I have 3 columns to which each row is populated with different data. I've set up an external URL to pull the information via a website's API let's visualize it a little: a2 = current inventory b2 ...
0
votes
1answer
37 views

How to change background color of row based on cell value? -Google Spreadsheet

I'm trying to figure out how to do the following on Google Spreadsheets: Put the letter 'x' in column A, row 2 (A column labeled "Status") and automatically change the background color of row 2 to RGB ...
0
votes
1answer
43 views

Google Spreadsheets Get Cell Comments/Notes

I'm having a nasty time learning how to use the gdata api and zend framework. I've basically got a spreadsheet that I want the data from. I've managed to get it into an array that I'm happy with ...
0
votes
1answer
27 views

Access functions from multiple Google Apps Projects

Is there a way in Google Apps Scripts to create a function that can be accessed from multiple projects/spreadsheets? When I'm in a Google Spreadsheet, I go to Tools > Script Editor... and I create a ...
0
votes
1answer
27 views

Google Apps spreadsheet indirect sheet name?

I have a Google Apps spreadsheet with three sheets, Y2013, Y2014, and table. On the table sheet I want to place the contents of cell B2 from either Y2013 or Y2014 depending upon which is in the ...
0
votes
1answer
41 views

Need a script that will populate datepicker in a google spreadsheet, when clicking an empty cell

From the research I've done, there doesn't seem to be a way by default to have the datepicker populated in an empty cell in a google spreadsheet. The cell has to already have a date in it for the ...
1
vote
2answers
26 views

evaluate formular from string (google docs)

is there a way to evaluate a formula that is stored in a cell? I'm looking for something like =EVAL(A1) where A1 is set to "=1+2". I found out that in MS Excel there is a EVALUATE() function, that ...
0
votes
0answers
31 views

google spreadsheet xml dynamic feed

So I have one of my google spreadsheet publishing as a feed: https://spreadsheets.google.com/feeds/list/0AocTKlnRUvM2dEduakJiaWZnUW50M3hjNE5WalhyVUE/od6/public/basic?alt=rss When I try to use the ...

1 2 3 4 5 23