I'm reading one sheet with the range and I want to skip hidden rows. Is there a way to do this? This code reading all rows:
const values = workbook.sheet("Sheet20").range("D15:G577").value();
Thanks!
I'm reading one sheet with the range and I want to skip hidden rows. Is there a way to do this? This code reading all rows:
const values = workbook.sheet("Sheet20").range("D15:G577").value();
Thanks!
Copyright © 2021 Jogjafile Inc.
I found a solution with exceljs (https://www.npmjs.com/package/exceljs)
...