Theo Ephraim

Results 164 comments of Theo Ephraim

Are you just worried about accidentally logging it and it being sent off to some logging service?

Messing with documents (sharing, deleting) is part of the Drive api and not the sheets API and is therefore not supported at this time. Hopefully I'll add some basic drive...

definitely seems like it could be useful. Open to PRs, and will add to my list otherwise.

Looks to be doable with either of these update types: - https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#repeatcellrequest - https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#copypasterequest but neither of these are supported yet For now, you can just load the full range...

Definitely doable, but it's quite awkward

Can you provide some more context on how you are calling the function? I can assure you that calling `sheet.getRows()` without passing in options.limit does indeed work in most cases...

I'm really not sure, but I don't think google sheets has great support for this. If you can figure out how to handle this in the raw google sheets api,...

The addRows function internally uses sheets API [append](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append) functionality which really is looking for a "table" of data within you sheet and then appending to the end, so unfortunately it...

I think you would need to update the formatting rules for those cells. https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#NumberFormat You could either do it beforehand in the UI on the whole column, or you can...

@franciscojun - thanks so much for tracking things down. I'll see if I can take a look this weekend :)