google-sheets

Insert data into a google spreadsheet via a link

∥☆過路亽.° 提交于 2021-02-04 21:53:10
问题 I'm looking for a way for users to send data from an email sent to them in a single click using google scripts. Basically, I have a spreadsheet with a list of emails, and I want to send an email to all of them (I've already set up a sort of mail merge script). The tricky part is that I want the emails to contain links unique to each person. If they click one of the links, I want data to be entered into the spreadsheet in the row corresponding to their email address. Is this at all possible?

Insert data into a google spreadsheet via a link

試著忘記壹切 提交于 2021-02-04 21:49:27
问题 I'm looking for a way for users to send data from an email sent to them in a single click using google scripts. Basically, I have a spreadsheet with a list of emails, and I want to send an email to all of them (I've already set up a sort of mail merge script). The tricky part is that I want the emails to contain links unique to each person. If they click one of the links, I want data to be entered into the spreadsheet in the row corresponding to their email address. Is this at all possible?

Emailing data from a spreadsheet at a specific time of day

北城余情 提交于 2021-02-04 21:01:57
问题 I am a complete novice with Google Scripts, and I need to find a way to have data collected in Google spreadsheet emailed to a Gmail account. I have a Google Form set up that records customer service statistics throughout the day. The responses are collected into the spreadsheet. The spreadsheet is cleared everyday to prepare it for the next day's responses. What I need to find is a way to have all of the collected responses emailed in a report at the end of each day. From the searches I have

Remove Google Border From Embedded Google Sheet

狂风中的少年 提交于 2021-02-04 20:50:18
问题 I'm looking to embed a Google Sheet into a Google Extension. Simple enough — just use the autogenerated embed code and stick it into an html file. This is what I did: <html> <link rel="stylesheet" href="extension.css"> <iframe width="250px" height="250px" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQhhQM1ag9M_exkDEV8omFWuI5-4tRizOZ5pl0ZzxpAEJ3rHfWzWilEzjgV4jwpyEj2aaTUkfQx6DRK/pubhtml?gid=1478993491&single=true&widget=true&headers=false"> </iframe> </html> The result is this: https:/

Remove Google Border From Embedded Google Sheet

烂漫一生 提交于 2021-02-04 20:50:07
问题 I'm looking to embed a Google Sheet into a Google Extension. Simple enough — just use the autogenerated embed code and stick it into an html file. This is what I did: <html> <link rel="stylesheet" href="extension.css"> <iframe width="250px" height="250px" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQhhQM1ag9M_exkDEV8omFWuI5-4tRizOZ5pl0ZzxpAEJ3rHfWzWilEzjgV4jwpyEj2aaTUkfQx6DRK/pubhtml?gid=1478993491&single=true&widget=true&headers=false"> </iframe> </html> The result is this: https:/

Parse JSON into multiple sheets using Fetch() Google sheets

别来无恙 提交于 2021-02-04 16:26:05
问题 I am trying to import a json file using Fetch() to populate multiple Google sheets I have been trying for a few hours but I do not know enough to do this The json is dynamic so its data is always changing but its structure remains the same my json looks like { "connections": [ { "Id": 131527, "From": 49647, "To": 49644, "Name From": "Horus Max", "Name To": "Bob allison", "Initial Date": "9/21/2020 15:20", "Last Date": "9/21/2020 15:20", "Type": "", "Weight": 0, "Checkbox ZZZ": "", "Text Area"

TypeError: Cannot read property “source” from undefined. (line 7, file “Code”)

假如想象 提交于 2021-02-04 16:13:12
问题 I am having an issue in Google Sheets TypeError: Cannot read property "source" from undefined. (line 7, file "Code") When Running the following Code Please Help function onEdit(event) { var timezone = "GMT-5"; var timestamp_format = "MM-dd-yyyy-hh-mm-ss"; var updateColName = "Ticket#"; var timeStampColName = "TimeComplete"; var sheet = event.source.getSheetByName('InAndOut'); var actRng = event.source.getActiveRange(); var editColumn = actRng.getColumn(); var index = actRng.getRowIndex(); var

How to enable not authorized users to protect the spreadsheet

∥☆過路亽.° 提交于 2021-02-04 08:35:09
问题 In our team we have the following scenario: we're using a google spreadsheet with some protected areas (mainly formulas that must not be overridden - only the "admin", in our case it's me, can edit them). The other input fields are unprotected. Every team member can enter their data. At some point in time (end of the sprint), our project managers need to report the numbers from the spreadsheet. To ensure that the numbers do not get changed afterward, they want to look at the entire sheet. For

How to copy value from one column to another on Google Sheets?

我是研究僧i 提交于 2021-02-04 08:32:14
问题 Is there any formula or script to copy only values (not formulas) from one column to another?. I don't want to use CTRL + SHIFT + V because I need this to be automatic. For example: Column A Column B Value1 Value2 Value3 All the values of column A are calculated with an array formula, I need that everytime that column A has a new record the value passes to column B for ever, so if the value or formula in column A is deleted the copied value remains in column B, is it possible to do this?

How to copy value from one column to another on Google Sheets?

南笙酒味 提交于 2021-02-04 08:32:09
问题 Is there any formula or script to copy only values (not formulas) from one column to another?. I don't want to use CTRL + SHIFT + V because I need this to be automatic. For example: Column A Column B Value1 Value2 Value3 All the values of column A are calculated with an array formula, I need that everytime that column A has a new record the value passes to column B for ever, so if the value or formula in column A is deleted the copied value remains in column B, is it possible to do this?