Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
55 views

I have the following code to query a single sheet (Sheet1) from a google sheet document. Haven't been able to find any documentation on how to query all sheets from the file const GoogleSpreadsheet = ...
Scott Riva's user avatar
1 vote
2 answers
98 views

In google sheets I am using this formula to currently calculate the amount of time that has taken place between two dates. =IFERROR(Rounddown(datedif(B2,C2,"D")/7)) Is there something I can ...
matthew Kegel's user avatar
0 votes
0 answers
23 views

I've been trying to get a script from Apps Script to work with a specific Google Sheets whenever a certain column cell is changed, but for some reason, the script just returns "Exception: The ...
Charlie Davis's user avatar
0 votes
2 answers
48 views

In this line, https://docs.google.com/spreadsheets/d/[myworksheet]/edit?gid=0#gid=0, what does /d/ do and what other values could be there? Same questions for /edit, ?gid and #gid. (note- I could ...
Brooks's user avatar
  • 3
-1 votes
1 answer
123 views

I would like to read the spreadsheet cell H2 in the same function blackList With this script, i am currently writing to cell H1. I would like to read cell H2 as well. This is my updated script: const {...
famq's user avatar
  • 13
-1 votes
1 answer
95 views

I am creating a discord bot and would like to write to a specific cell in Google sheets. With this code i am able to post the userInput into the embed when the command is executed on discord. However ...
famq's user avatar
  • 13
1 vote
1 answer
83 views

I'm creating a Discord bot. Whenever I use the command that this is linked to it works. However it displays all the data in all cells in the set range. How do I get a specific cell out of the range ...
famq's user avatar
  • 13
1 vote
1 answer
191 views

I previously had a Google Spreadsheet where I was able to send an event with parameters to my Google Chrome extension. It was a bit of a hack but the cell in my spreadsheet had something like this - =...
Ryan Grush's user avatar
  • 2,166
0 votes
1 answer
95 views

I am using the Google Sheet API. My code is working as expected. Now though, I want to add some bolding, highlighting, etc. I have reviewed other pieces of code but I am not fully understanding how to ...
Joey Martin's user avatar
0 votes
1 answer
62 views

I dreaded posting this because I should have been able to figure this out. All I am trying to do is loop through the results in a mySQL query and add those rows into Google Sheets. I do not want to ...
Joey Martin's user avatar
1 vote
1 answer
437 views

I've created an array that I'd like to have pasted on a sheet in cell A1. I'm aware of how to do that using setValues() but I was under the impression that using Sheets.Spreadsheets.Values.update() ...
DanCue's user avatar
  • 766
0 votes
1 answer
259 views

This is my query: import gspread from google.oauth2.service_account import Credentials import csv # Path to your service account key file SERVICE_ACCOUNT_FILE = '/Users/xxx/Desktop/projects/importcsv....
Marcosgarmar's user avatar
0 votes
1 answer
65 views

I'm currently developing a program that using google sheet API to get some data. I tried deploying it onto Amazon EC2 (Amazon Linux) and configured SSL using Let's Encrpyt. Everything is working fine ...
JxDev's user avatar
  • 1
0 votes
1 answer
351 views

I'm super new with React and Typescript, just started this week. I'm trying to make a form and upon form submission the data is sent to Google Sheets. I came across a few articles, and went with the ...
lazysince87's user avatar
1 vote
1 answer
267 views

I receive data using Google Sheets API and want to get a link to a file that is located on Google Drive, the link is displayed as an icon and label as in the screenshot. I am using the method https://...
IceCreamVan's user avatar
1 vote
1 answer
81 views

I could use javascript fetch() to read a google sheet single value without an issue. However, when tried reading multiple ranges, get error 403. This code works fine: const apiKey = 'key-here'; const ...
Kim's user avatar
  • 65
1 vote
1 answer
571 views

Here's the request URL format I am using currently: postResURL = https://sheets.googleapis.com/v4/spreadsheets/${SHEET_ID}/values/Reserved!B2:D7:append?valueInputOption=RAW&key=${API_KEY} Here is ...
Ryan Wang's user avatar
  • 480
-1 votes
1 answer
1k views

first let me say i apologize if this is an easy solution, i've never used google api or anything similar, as well as i'm new to php i'm currently trying to read a spreadsheet using google sheets api ...
acar's user avatar
  • 1
0 votes
1 answer
426 views

I am trying to create a google sheet using java springboot. Even though my request quota hasn't exceeded, i'm getting the 429 Too many requests exception. Error image : (https://i.sstatic.net/m1axt0Ds....
Sreenitti Sankar's user avatar
0 votes
1 answer
133 views

function onEdit(e) { try { var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet = ss.getActiveSheet(); if (sheet.getName() === "To Do List" && e.range....
Janda Devi Nepal Energy Files's user avatar
0 votes
1 answer
60 views

Yesterday I noticed that google api is formatting the sheet url different than before. According to the Google Sheets API docs, the format of a google sheet url should be: https://docs.google.com/...
Soroush Fallah's user avatar
1 vote
0 answers
300 views

When I am attempting to upload images to a google drive folder through my Python Flask web server using Google API, setting their permissions, and creating a spreadsheet with simple attributes that I ...
Nate Sorvino's user avatar
1 vote
1 answer
72 views

I am running up against the gsheet api quota for write requests when writing some relatively small dataframes to a single spreadsheet. The dataframes are held in a dictionary. The KEY is used for the ...
lb_so's user avatar
  • 146
0 votes
1 answer
110 views

I want to be able to retrieve all the sheets' (sheet1,sheet2,...etc) data from Google Sheets, not just one sheet (sheet1, in this example): from("timer:run?repeatCount=1") .to("...
Yogesh Vicky's user avatar
0 votes
1 answer
75 views

I am trying to format multiple cells with spreadsheets().batchUpdate(spreadsheetId=ssid, body=body).execute() firstly, I get formatting request using the following functions: #this function gets ...
Yunjong Guk's user avatar
1 vote
1 answer
63 views

I was able to successfully append data to my Sheet using laravel google sheets. The issue is with all dates and some integers. When uploaded, an apostrophe is added in front of the values. I ensured ...
Bojan's user avatar
  • 115
0 votes
1 answer
55 views

I am trying to run a Kivy app on my android phone (Xiaomi Redmi Note 12 Pro) which uses the google sheets API to write data to a google sheet upon pressing a button. For this I am using buildozer. I ...
iamklager's user avatar
0 votes
0 answers
370 views

I have a problem, GoogleSheetsApi does not see the table, despite the fact that it is configured and should work. I tried everything and couldn't solve the problem. Tell me, maybe someone knows a ...
LUCIFER_ LUCIFER_'s user avatar
0 votes
0 answers
75 views

Currently I have a google sheets spreadsheet for a project that I am working on that has a many worksheets. I am looking for a way to convert each worksheet into a PDF where the name of the PDF is the ...
Hari's user avatar
  • 11
1 vote
1 answer
70 views

I will explain what I'm trying to do. I need to send a unique QR code per each row to the respective email IDs. Below is the screenshot of the Google Sheet format: Below is the App Script code (This ...
FEBzX's user avatar
  • 379
-1 votes
1 answer
107 views

I am trying to integrate google sheets api with nodejs. I am wondering what the correct syntax is for calling two different sheets, separately (note that they are inside one spreadsheet). I tried ...
meue1004's user avatar
0 votes
1 answer
141 views

I'd like to give my Google Sheets add-on users the ability to view Big Query data in a connnected sheet. The perfect flow would be: 1- They push the button to display their data (from the sidebar) 2- ...
Matt Pi's user avatar
  • 825
0 votes
1 answer
167 views

I have a template google sheet that I use as a registration form. It has a attached google apps script that, when the submit button is clicked, scrapes the data from the sheet and sends it to my BE. ...
maklmor's user avatar
  • 79
1 vote
0 answers
18 views

I have the following problem - when I try to use google sheets api to fulfill my google document from a Spring application, i get the following error: javax.net.ssl.SSLHandshakeException: PKIX path ...
Pavel Molchanov's user avatar
0 votes
1 answer
55 views

I have a sheet where certain data is hidden and I need to ensure that I don't show that data if it's hidden (which columns are hidden will change frequently). How can I detect which columns are hidden?...
PointlessSpike's user avatar
-1 votes
1 answer
75 views

I'm creating google spreadsheet and a chart inside following the sample code at https://developers.google.com/sheets/api/samples/charts I did not find the properties inside BasicChartSpec https://...
user3282227's user avatar
0 votes
0 answers
33 views

I have the following data in my Spreadsheet Since the latest doc_no is TRY/2024/05/06/0707857126, I want to generate a PDF according to that number. Here's the PDF Spreadsheet: I'm able to generate ...
Cignitor's user avatar
  • 1,099
1 vote
1 answer
84 views

I am using the following script, which works great to save a PDF copy of a particular Google Sheet to my Google Drive. It specifically saves overtop of an existing file on a schedule, but does not ...
cliff.kujala's user avatar
0 votes
1 answer
41 views

I'm inserting data into sheets using append, but the new data ends up being inserted in random positions. Sometimes at the bottom, sometimes at the top. Apparently sometimes in the middle also, ...
Dan_J's user avatar
  • 175
0 votes
1 answer
75 views

Want to copy format in particular cells in google sheet and paste it in a different cell. Using batch_update to do this but getting the following error: ERROR - values["range"] = ...
jay tawde's user avatar
0 votes
1 answer
89 views

My webapp backend is in Node.js, used for reading/writing to/from a Google Sheets spreadsheet. I want to use a query that will retrieve only rows which meet specific conditions, but haven't been able ...
Gonen I's user avatar
  • 6,187
1 vote
1 answer
87 views

This is a follow-up to a question I had asked some time ago. The person who answered it requested I set up a new question rather than modify the existing so here it goes. Here is the sample document. ...
DanCue's user avatar
  • 766
2 votes
0 answers
88 views

I don't know how to write code in order to read the information from the Sheet and send it to Winforms (VisualStudio) to get the values and output them to the user. also connected the Google.Apis....
mifus arakiev's user avatar
0 votes
1 answer
600 views

I am using the following method to access a Google Spreadsheet using Javascript to, for example, insert a row of data: const Sheets = require("@googleapis/sheets"); const jwt = new Sheets....
u936293's user avatar
  • 16.5k
0 votes
1 answer
42 views

The script that I’m using on GoogleSheet Appscript when moving one row to a new tab any hyperlinked text will not paste over to the new tab. How can I solve for this? Google Sheet Link: https://docs....
Timas's user avatar
  • 3
0 votes
2 answers
285 views

My Python script can't access my Google Sheet as I'm getting this error: Exception has occurred: RefreshError ('invalid_grant: Invalid JWT Signature.', {'error': 'invalid_grant', 'error_description': '...
Pieter le Roux's user avatar
0 votes
1 answer
126 views

I need to read the urls from hyperlinks in Google sheets (where applicable) to be used in other parts of my analysis. I was reading my data with read_sheet() or range_read(), but that only gives me ...
darth_chaos's user avatar
1 vote
0 answers
79 views

I have many sheets in a Google Sheet, I want to check the type of sheet via Google Apps Script I know a chart sheet as well as a timeline sheet is a "OBJECT" How to differentiate between the ...
Code Guy's user avatar
  • 3,198
0 votes
1 answer
400 views

I am using Google Sheet API Request and I am not getting even an error message to know what I am lacking or what I am doing wrong. I am getting API call to sheets.spreadsheets.values.append failed ...
Jericho Longabela's user avatar
-1 votes
1 answer
102 views

Error when creating a telegram bot, when entering the Name/Email/Phone, I ask him to do this again, then he gives me the following error message: <HttpError 400 when requesting https://sheets....
ProgTest Beta's user avatar