blabla blabla
blabla blabla

Reputation: 159

Delete column in excel file using ExcelJS

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

Answers (1)

Stacks Queue
Stacks Queue

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

Related Questions