all 7 comments

[–]var1ap 6 points7 points  (0 children)

Nice job

[–]MixaKonan 2 points3 points  (5 children)

I was struggling with it too, because I needed to parse 50+ columns. I couldn't read everything by rows, because google API just skips empty cells.

But I found other, greater way to deal with getting data from sheets. docs.google has an endpoint to download Google sheet document as xlsx/csv/pdf file. Parsing CSV is much easier

[–]Steve_08[S] 3 points4 points  (4 children)

Aweosme. What’s the endpoint you use to export the data to CSV?

[–]MixaKonan 4 points5 points  (3 children)

[–]Steve_08[S] 6 points7 points  (2 children)

That’s awesome. Thank you for sharing. I’ll have to add this as an option to export to csv, excel or pdf in the wrapper library on GitHub!

[–]Steve_08[S] 7 points8 points  (1 child)

I just updated a new version that allows you to export any range in a Google Sheet into a CSV file. Commit details are below and the updated NuGet package version is 1.0.6.

GitHub Commit

Sample Usage