Reputation: 225
How to read only Column A value from excel using nodejs(node-xlsx) ? Please advise. After reading all the column values then loop through to search from other source.
var xlsx = require('node-xlsx');
var obj = xlsx.parse(__dirname + '/test.xlsx');
var obj = xlsx.parse(fs.readFileSync(__dirname + '/test.xlsx'));
console.log(JSON.stringify(obj));
Upvotes: 4
Views: 13498
Reputation: 69
const XLSX = require("xlsx");
const workbook = XLSX.readFile("DummyExcel.xlxs"); //read the file
const worksheet = workbook.Sheets["Execution Summary"]; //get the worksheet by name. you can put sheet id also
//print the value of desired cell or range of cell
console.log(
"worksheet:",
XLSX.utils.sheet_to_json(worksheet, {
raw: true,
range: "B5:B10",
defval: null,
})
);
Upvotes: 2
Reputation: 1857
Try other npm package called: xlsx
:
'use strict';
const _ = require('lodash');
const xlsx = require('xlsx');
const workbook = xlsx.readFile('./data/pv.xlsx');
const worksheet = workbook.Sheets[workbook.SheetNames[0]];
const columnA = [];
for (let z in worksheet) {
if(z.toString()[0] === 'A'){
columnA.push(worksheet[z].v);
}
}
console.log(columnA);
Upvotes: 10