Gets the value of a cell in the worksheet by row and column index.
The ExcelJS worksheet.
The 1-based row index.
The 1-based column index.
The value of the specified cell.
const status = getCellValue(worksheet, 2, 4); // gets value from D2 Copy
const status = getCellValue(worksheet, 2, 4); // gets value from D2
Gets the value of a cell in the worksheet by row and column index.