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

Add ability to create cell instance using A1 notation #765

Merged
merged 1 commit into from
Apr 27, 2020

Conversation

tivaliy
Copy link
Contributor

@tivaliy tivaliy commented Apr 21, 2020

Naturally when we deal with Google Spreadsheets we'd like
to operate with letters (in A1 notation), rather then decimal
row/col addressing mode. This patch adds an ability to create
cells using A1 notation, eg.:

cells = [Cell.from_address(f'A{i}', value=i) for i in range(1, 10)]
self.sheet.update_cells(cells)

Naturally when we deal with Google Spreadsheets we'd like
to operate with letters (in A1 notation), rather then decimal
row/col addressing mode. This patch adds an ability to create
cells using A1 notation, eg.:

   cells = [Cell.from_address(f'A{i}', value=i) for i in range(1, 10)]
   self.sheet.update_cells(cells)
@burnash burnash added this to the 3.6.0 milestone Apr 21, 2020
@burnash
Copy link
Owner

burnash commented Apr 21, 2020

Good idea, thank you very much!

@burnash burnash merged commit b4bbf96 into burnash:master Apr 27, 2020
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

Successfully merging this pull request may close these issues.

2 participants