node-google-spreadsheet
node-google-spreadsheet copied to clipboard
Google Sheets API wrapper for Javascript / Typescript
I am trying to save form data to a spreadsheet in Next.js but I keep getting this error which appears as soon as I import `google-spreadsheet` Error Bellow is what...
Using a multi-tab spreadsheet that contains a chart as one of the tabs: Example code: ```js function getCells(worksheet) { const { title, index } = (worksheet || {})._rawProperties try {...
Hi @theoephraim , When **Dates** are added to the spreadsheet they are preceded with a ' but this should not happen. Is there any way to prevent by adding '...
I would like to set verticalAlignment and wrapStrategy defaultFormat is in GoogleSpreadsheet ``` GoogleSpreadsheet.defaultFormat = { verticalAlignment: 'TOP', wrapStrategy: 'WRAP' }; ``` Says not to try and set directly, fair...
Hi @theoephraim , When ever I try to store EST date (like 06/19/2020) in the sheet cell, it stores as `String format using cell based API` but` if try to...
Hey guys! I have some cells merged in the range B2:B6. I got one of the cells using `getCellByA1`: ``` const cell = sheet.getCellByA1('B3') ``` Is there any way I...
Hello! Is it possible to check the API status? How? For example how many request are made, if i have other available requests, the rate limit per hour, etc? Thank...
*** post complete *** So I have trapped the uncaught error, and am writing this from the output: the stack looks like (top at the top): ``` (anonymous) arrayEach forEach...
Functionality that would convert the instance of SpreadsheetRow to just it's data with the signature [columnname]: value would be super helpful
I seem to be having an issue with row.delete(); here is my code ```const config: processType = await configData(); let temp = row; if (temp['Last Live (GMT)']) { if (temp.Status...