-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Is there a way inserting values in columns. #514
Comments
you can do it by array of object's i hope this may work for you |
Hi, Thanks for your response but it's not exactly what I have to do. Because I open an existing file with many columns and I have to add a column at the end to append data. Thanks for your help. |
@miniil I have just added a values property to Column (as of v1.1.0)
|
@guyonroche looks like it is readonly array as of 4.4.0: |
Hi,
I want to insert multiple values into one colum based on its header.
For example :
var myValues = [1, 2, 3, 4];
var thisColumn = sheet.getColumn('idCol');
thisColumn.value = myValues?
and the result will be something like this
idCol
1
2
3
4
Thanks for your help.
The text was updated successfully, but these errors were encountered: