Is there a way to create a table in Excel using office js with custom headers.
As of now, any table am creating has the default headers as - Column1, Column2 etc ..
I want to over ride the same with any custom header names like Header1,Header2 etc.
Is there any way to do so?
Am creating the table in the following manner -
var table = ctx.workbook.tables.add(wSheetName + "!A1:N1", true).load("name");