I want to receive the Excel data and put the value in the Excel column as a loop statement.
I want to put it in with the code below, what should I do?
//read file
const workbook = XLSX.readFile("test.xlsx");
//put value
workbook.Sheets.Sheet1.B2.v = 2000
workbook.Sheets.Sheet1.B3.v = 3000
workbook.Sheets.Sheet1.B4.v = 4000