Reputation: 159
So i have an excel file and I want to delete a specific column ( for example : column I ).
I searched in the documentation and I can't find anything that indicates how to do that.
Upvotes: 1
Views: 2832
Reputation: 1132
worksheet.spliceColumns(start, count, ...inserts)
which is somehow similar to javascript splice function.
so if you want to delete the whole B column
worksheet.spliceColumns(2, 1)
Upvotes: 1