Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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"']
  };
});
Source by github.com #
 
PREVIOUS NEXT
Tagged: #exceljs #column #pick #drop #list
ADD COMMENT
Topic
Name
9+4 =