Have created an application using nodejs(npm excelJs), which writes the data to an excel sheet(which includes validations and automatic calculations).
for example:I have a column called "type" in my excel which have a validation of: { type: 'list', formulae: [ '"A,B,C,D"', '0' ], allowBlank: true, showInputMessage: true, showErrorMessage: true, errorStyle: 'stop' }
Based on the "type" the total amount will be calculated.
But when i try to insert the value to "type" using the code below WorkSheet.getRow(row).findCell(cell + 3).value = "A"; the value is just inserting but the total value is not calculating.
what am i missing here?can anyone explain how to select a value from a list in a excel column using the node?