I am trying to extract data from an Excel file.
They are loading fine, but it tells me that worksheet.eachRow
is not a function. How can I solve this problem??
const excel = require('exceljs');
function extractDataFromWorksheet(worksheet) {
const data = [];
try {
worksheet.eachRow((row, rowNumber) => {
if (rowNumber !== 1) {
const numeroComercio = row.getCell('A').value;
data.push(numeroComercio);
}
});
} catch (error) {
console.error('Error al recorrer las filas:', error);
}
return data;
}
I testet and found it to work fine, but you are not showing how you extract the worksheet. Here's my test code: