-
Notifications
You must be signed in to change notification settings - Fork 4
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
Single Cell endRowIndex #1
Comments
Thank you for your support. And, I apologize for my late response. Now, I noticed your comment. From your comment, I confirmed it. So, I updated this library as v1.0.1. Could you please confirm it? Thank you so much. |
Thanks, @tanaikech ! Your library and no-apps-script approach makes scripts work much faster, and also help developing Front-End part. |
Thank you for replying. Yes. This repository publishes the functions as both a library and the standalone functions in order to match the user's situation. I'm glad that those are useful for your situation. I would like to grow this repository by adding various functions. |
Dear Tanaike, I use this script a lot in my work. thank you a ton!
Here's the issue I found:
Sample Code
Output
Expected output
Steps to reproduce
Proposed solution
My guess is that it is a logical error in this line:
endColumnIndex: end ? end.col + 1 : 1,
I suggest to change it like this:
endColumnIndex: end ? end.col + 1 :start.col+1
If I did not understand the logics of
grid
creation, I'm sorry.I also suggest to create a type for a grid like so for autocompletion purposes:
The text was updated successfully, but these errors were encountered: