For now, I have to hardcode like this
var cell = worksheet.getCell('A1');
But I want to define my cell by name like data
and access the cell by:
var cell = worksheet.getCell('data');
How can I do that with exceljs ? Thank you very much!
Note: The only solution seems to solve my problem is to add column/row headers and define key, but I don't want to do that in my code:
worksheet.columns = [
{ header: 'Id', key: 'id', width: 10 }
];