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

I have a table which looks like this: I want to copy the first two columns of data and insert them before the EOF, but empty them before the paste. The end result should look like this: So far, my ...
Stuart L's user avatar
  • 167
0 votes
1 answer
41 views

I’m having trouble getting a log-based alert policy to work in Google Cloud Monitoring. I can see the logs in the Logs Explorer and the filter seems to match correctly, but the alert never triggers ...
Kacper Bednarski's user avatar
-2 votes
1 answer
71 views

I am testing out array handling with checkboxes and have the following code: var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet = ss.getActiveSheet(); function arrayTest() { var bigArray = ...
Stuart L's user avatar
  • 167
0 votes
0 answers
80 views

I am working on eBay data automation using Google Sheets. My code extracts data from eBay via the API for specific fields. However, one field — i.e., the Shipping Label — has a value of 0 for some ...
Tahir Mehnood's user avatar
1 vote
2 answers
80 views

I have a script which checks the value of a series of flags before deciding on an execution pathway. Because of the way the script executes, the flag values are held as script properties, therefore ...
Stuart L's user avatar
  • 167
0 votes
1 answer
65 views

I'm a long time reader, first time poster. I'm having a problem showing invoice details for each company id for this sheets. https://docs.google.com/spreadsheets/d/1iTJ8PR3snsbZKh01-...
Remmerboy's user avatar
Best practices
0 votes
4 replies
65 views

I have a spreadsheet that receives data inputs externally. That data is used by sheet formulas to calculate an output which is then collected via an HTTP request. What is the best way to allow google ...
Sentient Onion's user avatar
2 votes
1 answer
63 views

I have this table and the chart I want as below: To acheive this I have to switch rows/columns, and use column A as headers. However I cannot find the corresponding command for the checkbox "Use ...
benchenggis's user avatar
1 vote
2 answers
98 views

To get around the fact you can't pop user dialogue windows on mobile devices, I have created a simple function which posts any error messages to a cell and waits for the user to check a checkbox to ...
Stuart L's user avatar
  • 167
0 votes
1 answer
110 views

My situation in Google Sheets: I have a list of target words and phrases in column A (as few as 20 to as many as 400), in column B I have 3 and 4 digit number codes assigned to each target word and a ...
Eastland's user avatar
0 votes
0 answers
33 views

I am using the reserved doPost(e) function to handle my posted CSV file data. When I try to access the data using e.postData.contents and log the contents, nothing is logged. Actually, it is more like ...
Unexperienced dude 69's user avatar
-1 votes
1 answer
46 views

I have this Apps Script / Cheerio function that successfully scrapes the data I want from the url. The site only displays 25 entries at this url. I can find additional entries on subsequent pages (by ...
zambonidude's user avatar
1 vote
1 answer
50 views

I’ve built a Telegram bot hosted on Google Apps Script, using a webhook to handle updates. When I click on an inline button, the bot sends the correct reply, but it keeps repeating the same response ...
Joey Perkins's user avatar
1 vote
1 answer
63 views

I have written a simple add-on using google apps script, and "deployed" it as "Add On". But whatever I do, I cannot figure out how to connect that add on to my drive account so I ...
Dima's user avatar
  • 40.6k
1 vote
1 answer
100 views

I have the following code to copy the last row (effectively used as a template) and paste it a user-defined number of times into the sheet, effectively inserting new rows: function InsertNewRows() { ...
Stuart L's user avatar
  • 167
0 votes
0 answers
76 views

I have a Google Apps Script project that fails randomly. Sometimes, it will work fine for days and then fail multiple times in a day Note: The code doesn't change. Code make use of email, google sheet ...
CodePanda's user avatar
  • 150
0 votes
0 answers
39 views

Through the google calendar publish event interface, it is possible to copy an URL link which can be used by others to see that event, if they have access to the calendar. Google Calendar Publish ...
FernandoT's user avatar
-1 votes
1 answer
61 views

I have developed a Google Workspace Add-on (published from a standalone Apps Script project) that relies on making an external API call for verification and event logging. The app works perfectly when ...
Hoàng Huy's user avatar
1 vote
0 answers
52 views

Goal: I am trying to call a 2nd Gen Google Cloud Function (Python, private/requires authentication) from Google Apps Script (GAS). The Problem: The execution consistently fails. When ScriptApp....
Jinnosuke Yamada's user avatar
0 votes
0 answers
38 views

I am facing a strange and inconsistent issue with theme application when generating presentations using the Slides API and an Apps Script helper function. My Goal: I'm building a service to generate ...
Antoine Gendron's user avatar
0 votes
0 answers
65 views

Assume the following simple setup for sending telemetry to Google Sheets: Curl -> Google Apps Script deployed as Web App -> Google Sheet -> Cell 1:1 Google Apps script is a simple doPost() ...
Noideas's user avatar
  • 127
0 votes
2 answers
97 views

How would I be able to make this function work for two separate tables within the same sheet? var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet = ss.getSheetByName("Leaderboard"); ...
Daniel Ostrosky's user avatar
1 vote
2 answers
88 views

I have a Google Apps Script to automate the description of Google Calendar events. The script runs once a week and tries to fetch, and modify, the occurrence for the week to follow. The code to find ...
Christoffer Bergman's user avatar
1 vote
2 answers
178 views

I'm very new to using Apps Script, and I'm working with a sheet with over 82,000 rows. I'd like to run a script to create an empty row after a group of surnames (column A) sorted alphabetically to ...
C. V.'s user avatar
  • 11
2 votes
2 answers
168 views

How do I change the default indentation in the Google Apps Script editor. It defaults to 2. Even though there are lines, I find it difficult to align the code blocks, especially when they are quite ...
cup's user avatar
  • 8,538

1
2 3 4 5
1139