Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
1k views

I am trying to add rows to a Google Spreadsheet using the Python API and I am getting a 400 response code and the response body says that all the values I am trying to add are invalid. I simplified my ...
Mo0rBy's user avatar
  • 760
0 votes
2 answers
115 views

I have data to be read from another sheet (Master Sheet) within a range Master!A1:EE2000 and to be written on a separate sheet (Sheet A) with the same values (no alterations performed) and location. ...
James's user avatar
  • 3
0 votes
1 answer
839 views

Goodness, the OAuth landscape is elaborate! I've seen a bunch of posts that answer parts but not all of this question, including some that are old enough that there might be better answers now. I'd ...
HaPsantran's user avatar
  • 6,307
0 votes
0 answers
42 views

I'm trying to create a project that takes data from GoogleSheet and outputs it to the website as a linear graph, but somehow it doesn't work on the website, even though the graph itself is, and the ...
TheUncleLion's user avatar
0 votes
2 answers
90 views

I have a setup of buttons in my "A" Column on my sheet that when pressed, log a value into the "F" column of the current time. However, each of these buttons is an individual image ...
HH-Dev's user avatar
  • 3
0 votes
2 answers
119 views

I am trying to get the data from a google sheet that is placed in my drive.The name of the file is "AnexoSepe".My code is simple: " var sheet=SpreadsheetApp.getActiveSpreadsheet()....
SERGIO DORESTE BUERLES's user avatar
0 votes
0 answers
145 views

I have a drawing on a sheet that I use to indicate its a draft copy. When appropriate, this drawing needs to be removed. Is it possible to remove a drawing using Google Sheets API? i.e. the equivalent ...
user22309393's user avatar
0 votes
0 answers
131 views

I have a main html, with iframe1 and iframe2 inside. I want to send a message to iframe2 to reload itself after a button has been pressed in iframe1. Message arrives successfully as can be seen in the ...
Darkoder's user avatar
1 vote
0 answers
68 views

I programmed a small app to send data to google spreadsheets. It worked perfectly fine. I changed nothing on the code and suddenly I got authorisation error from google. I check online and found out ...
Adrian 's user avatar
-1 votes
1 answer
353 views

I'm using gspread to load read from my spreadsheets and it's working great. However, I'm hitting Google data caps quite often, especially when I'm testing. I created a caching method that uses a local ...
user2506946's user avatar
0 votes
1 answer
1k views

I want my code to check the cell values from a column and pick only the rows that contains hyperlinks. The function has_hyperlink works with a local stored excel file, but when I try to use it on the ...
Batman_110's user avatar
0 votes
1 answer
93 views

I'm attempting to write data from a list to a specific Google Sheet. I've set up the configuration, but I'm encountering an error that seems related to not using a coroutine. Is my approach correct? ...
Juanjo's user avatar
  • 103
0 votes
1 answer
53 views

I have a spreadsheet file (master data) that I need to have its copy for my department. I want every change on master data is reflected to the copy file, including when someone adds a new tabsheet. ...
reyhana basil's user avatar
0 votes
2 answers
495 views

I'm using https://www.npmjs.com/package/googleapis to insert data. One of my cells should contain multiple links, let's say https://foo https://bar This is easy to do manually and I can query ...
Joel Peltonen's user avatar
0 votes
1 answer
142 views

I have the following info in google sheet, but all documentation to create google chart is more about to read the info in a vertical way and i have code to read it vertical but as you see my info is ...
alosatriani's user avatar
1 vote
1 answer
139 views

First of all - I'm a rookie, not a developer. I'm trying to copy data from multiple excel files, that are in one folder, to one worksheet in Google Sheets. I'm using excelJS and Google Sheets API. The ...
blw_'s user avatar
  • 13
0 votes
1 answer
825 views

i have this form https://docs.google.com/forms/d/e/1FAIpQLSc4OjEgxlYpcAO7zkd9-jLNvkB3nZRsrkMv-IqVII6EnL0DnQ/viewform and i want to submit 100 response into it, every response will be 4 answers only. ...
MZ Gaming's user avatar
-2 votes
1 answer
102 views

COMPANY ID NUMBER NAME WORKING HOUR WORKING PRICE WORKING DAY AUDIT PRICE BONUS ALASKA 1 1232 JOHN 14,5 1102 23 1520 767 NEWYORK 1 1232 JOHN 1,5 114 7 375 0 OHIO 2 1414 HARRY 13,5 1020 25 1250 750 ...
Esat Kurtul's user avatar
1 vote
2 answers
140 views

I am bit stuck here and trying to figure out the following: How increment the id (code) if it reaches Item-00010 or Item-00100..and so on? Is it better to start the value string to "Item-1000&...
user7935276's user avatar
0 votes
1 answer
248 views

I am using python to get some data from database to csv and from csv to google sheet (sheet1). When I write data from CSV to google sheet, it add a single quote in beginning of all values which ...
SQLLER's user avatar
  • 51
0 votes
1 answer
39 views

I followed the google API authentication steps, it worked initially but after a couple days following the same steps and redownloading "secrets" give me the above error, I thought this flow ...
Corwin Gibbons's user avatar
0 votes
1 answer
432 views

I'm moving some python code to Node JS. In python, I have connection to Google Sheet API v4 with a self.service = BuildService().build('sheets') function which I can initiate whenever I need ...
jason's user avatar
  • 4,589
0 votes
0 answers
107 views

I'm using a Google sheet API and I can read just fine from the Google sheet, but I can't write to it. From what I read, I needed to use Google Identity Services to login so I tried integrating it, but ...
chance holzwart's user avatar
0 votes
1 answer
88 views

I'm writing an appscript on google sheets to implement reorder levels. I currently have a sheet called Reorder Levels Master. Through API's, it takes in live inventory from our Retail software and ...
Snowh12's user avatar
0 votes
1 answer
74 views

there are some sheets in my spreadsheet and I want find how many times I use importrange function to know every connection in my active spreadsheet. Is there a formula to find this values?
Amir Farrokhnezhad's user avatar
-1 votes
1 answer
43 views

There is my code: from gspread_asyncio import AsyncioGspreadClientManager import io import csv from google.oauth2 import service_account from gspread.exceptions import SpreadsheetNotFound async def ...
newbee12345's user avatar
0 votes
1 answer
194 views

I need to write a script that allows me to automatically save a pdf after the data has been refreshed and send people an email. The current problem is that there are too many columns in the google ...
Skylar's user avatar
  • 65
1 vote
1 answer
133 views

I use the code below to authorize and refresh tokens to update some data in the Google sheet in my ASP.net MVC project, I knew that after 1 hour, the token would expire, So I checked the expiration ...
Amir's user avatar
  • 892
-1 votes
1 answer
528 views

How do I use the batch_update correctly? Here is the relevant code: client = gspread.authorize(creds) val = ['99', '0', '0', '0', '0', '98', '98', '0', '0', '105', '0', '0', '105', '106', '99', '102',...
Diogo Silva's user avatar
-1 votes
1 answer
39 views

I have a Google Sheet stores all training records of all students. I want to set up something to let the clients only see their own records. If it is something Google Sheet could help me? Please see ...
Moe Wong's user avatar
2 votes
1 answer
615 views

I'm trying to set up the Google Sheets API for python. When I run the quickstart.py file (exactly as specified in the google documentation), I receive the following error: AttributeError: module '...
heshi's user avatar
  • 41
0 votes
1 answer
105 views

I researched the topic and found this: Google Sheets API Sort column by date The problem is that it sorts by column A. So I changed it to the following: request = { "requests"...
Dror's user avatar
  • 5
0 votes
1 answer
527 views

I'm keeping track of my time card and pay periods in google sheets, and I'd like to automatically fill the 'Pay Period' column based on the date of the shift I'm recording. Date Pay Period 10/30/23 13 ...
Kai's user avatar
  • 16
0 votes
1 answer
213 views

In Google Sheets it is possible for data labels in a chart to reflect the number formats for individual scale points? Even if its only possible via the Google Sheets REST API that would be fine. ...
prototype's user avatar
  • 8,195
1 vote
0 answers
97 views

In my asp.net application, I connected Google Sheets to read some data and show it in my view. So I logged on to the Google account that Google Sheets has and went to the Google Cloud Console. There I ...
Dev Beginner 's user avatar
0 votes
0 answers
76 views

I have a file with several sheets, they're all the same but contain data from different sources. I would like to create a new sheet that updates automatically and give me the total of all the other ...
Davidator's user avatar
0 votes
0 answers
114 views

My app is a ruby on rails one. I developed in 2018 one which used OAuth 2.0 authentication with an OOB_URI. But this technique doesn't work anymore and the Google sheets API documentation had changed. ...
Elise S's user avatar
  • 75
3 votes
0 answers
131 views

Goog morning from Sri Lanka!!! here goes my first question in StackOverflow. I am a novice, and bear with me its total stupid question. I am trying to get google sheets data for wordpress site using ...
Sky Man's user avatar
  • 31
2 votes
2 answers
640 views

I am writing an application that uses the Spreadsheets API. Because I am using the write scope, which is sensitive, the OAuth2 redirect URI must use https instead of http (except when using localhost)....
kvitso's user avatar
  • 328
0 votes
1 answer
276 views

I need to get links from HYPERLINK'd cell, but i really dont know how i can do it. I need to get links from HYPERLINK'd cells [Pic. 1] and i cant find any documentation on this problem in GSpread's ...
revolex's user avatar
  • 11
1 vote
0 answers
138 views

I'm attempting to create a script to access data from a Google Sheet using a service account for authentication. However, when I run the script, I encounter an error that I'm having trouble ...
Laplace's Code's user avatar
0 votes
1 answer
191 views

I am working on google sheets and using gspread to dump some data from different sources in it. Then I have some rows and columns which I want to highlight by a color but for some reason it is only ...
trathi01's user avatar
1 vote
1 answer
526 views

I'm trying to convert a column containing several rows of HTML code into rich text in another column. When I do it on a single cell, I succeed. But when I try to convert all the rows in the column ...
user22805922's user avatar
0 votes
1 answer
2k views

I am trying to upload about 40k rows (39345 rows x 60 columns) with Google Sheets API and I am getting the following error: Error, sleep for 101 seconds Traceback (most recent call last): File "...
Manuel Perez Heredia's user avatar
0 votes
2 answers
546 views

I have a data-set in Google Sheets that needs to be rearranged. I have data across multiple rows and columns that I would like to be pasted onto a single row, sequentially, following a logic of left ...
Cav O'leary's user avatar
0 votes
1 answer
232 views

EDIT: Added example sheet for clarity. Sorry for the delay, the real sheet is complicated and I had to track down which bits were most relevant to use in said example, while also being confident that ...
Freddin Mcguyer's user avatar
1 vote
1 answer
204 views

I'm working on a financial forecast vs Actuals. I created a button to separate forecast months vs. actual months and need a script to make them work. I want too be able to click forecast button, and ...
Aria Dragonn's user avatar
0 votes
0 answers
234 views

I've got four different sheets on one Google Sheet file. What they are is meter usage and costs from two different companies. The meters are the same, but when switching to the other company, they ...
Robert Weiland's user avatar
0 votes
0 answers
77 views

Our organization is on Google Workspace enterprise. We create projects in GCP so we can get tokens to make Google Workspace API calls (Google Drive and Google Sheets). I want to write a program that ...
IMTheNachoMan's user avatar
0 votes
1 answer
994 views

I'm working on a Python script to update a Google Sheets document using the Google Sheets API, and I need to add multiple hyperlinks in a single cell along with some messages. However, I'm having ...
Roni Jack Vituli's user avatar

1
3 4
5
6 7
124