Skip to content
Advertisement

Tag: google-sheets

Pass Google Apps Script (GAS) – Charts Service chart to HTML Template to create within GAS to create Modeless Dialog Box

User: Tanaike kindly answered my question here: Pass Google Apps Script (GAS) – Charts Service chart to HTML Template within GAS However, I realized that I’d like to also edit my template and use a modeless dialog box to do some formatting prior to sending an email; I find it helpful to preview my work in the modeless dialog box.

Pass Google Apps Script (GAS) – Charts Service chart to HTML Template within GAS

https://developers.google.com/apps-script/reference/charts I’d simply like to pass the chart object generated from Charts Service within the HTML template (where I choose – not as an attachment, but within the template) to email. I have had success attaching the chart object, but I’d like to integrate this within the email itself/embed Here is the Google Apps Script code (using the link above

NodeJS accessing Google SpreadSheets

I made this code (index.js): I’m trying to connect my code with a google spreadsheet. For the connection, I’m using node.js, but I’m getting this error message. Does anyone know why I’m getting this error? What am I doing wrong? Answer When I saw your showing script and your error message, I’m worried that the current version of google-spreadsheet you

forEach array getting error TypeError: Cannot read property ‘forEach’ of undefined

im trying to clean some sheets, individually i make it work uncommenting and changing sheet name but when when i try to group in array and execute with foreach im getting error TypeError: Cannot read property ‘forEach’ of undefined doCleanSheets @ – 10x_to_11x.gs:87 line 87 is SpreadsheetApp.getActive().sheet.forEach(doClean); searched for error, but results were way more complex than my case, and

How to make a hyperlink function that changes according to cell value?

I want to put a value into the cell and get a research hyperlink. I’m using the link: https://projudi.tjpr.jus.br/projudi/processo/buscaProcesso.do?actionType=pesquisaSimples&flagNumeroUnico=true&numeroProcesso= For example, I write a value (00156610320218160021) in a blank cell, and after this, the link it will be: The next cell, if I write this value (0012204-19.2019.8.16.0025), the link will be: =HYPERLINK(“https://projudi.tjpr.jus.br/projudi/processo/buscaProcesso.do?actionType=pesquisaSimples&flagNumeroUnico=true&numeroProcesso=0012204-19.2019.8.16.0025″;”0012204-19.2019.8.16.0025”) Important things: Before I write this numbers, the

Advertisement