Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature request for creating sheet and dynamically appending columns #8

Open
AlwaysTraining opened this issue Apr 13, 2014 · 0 comments

Comments

@AlwaysTraining
Copy link

I would like to do something like:

ws = api.new_worksheet('Data')
ws.insert_row({'a':1})
ws.insert_row({'a':1, 'b':2, 'c':3})
ws.insert_row({'b':2, 'c':3, 'd':4})

Resulting in the table:
a,b,c,d
1,,,
1,2,3,
,2,3,4

I looked into it briefly, and it looked like it was going to take too much effort for me to do for my current goals, so I went with a human in the loop work around where I will manually create a blank worksheet, and then manually add columns on demand. Here is the blog post I found with the best info:

http://www.garrettpatterson.com/2011/08/04/add-new-column-to-google-spreadsheet/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant