Answers for "exceljs column pick from drop down list"

1

exceljs column pick from drop down list

ws.getColumn("A").eachCell({ includeEmpty: true }, function(cell, rowNumber) {
  cell.dataValidation = {
    type: 'list',
    allowBlank: true,
    formulae: ['"male,female,other"']
  };
});
Posted by: Guest on March-30-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language