2

是否可以创建多选下拉菜单?

Excel 允许使用 VBA 创建下拉选项,但我没有找到生成 excel 的选项并使用 PhpSpreadsheet 添加了多选下拉列表。

我发现样本只有一个下拉列表。

$validation = $spreadsheet->getActiveSheet()->getCell('B5')->getDataValidation();
$validation->setType( \PhpOffice\PhpSpreadsheet\Cell\DataValidation::TYPE_LIST );
$validation->setErrorStyle( \PhpOffice\PhpSpreadsheet\Cell\DataValidation::STYLE_INFORMATION );
$validation->setAllowBlank(false);
$validation->setShowInputMessage(true);
$validation->setShowErrorMessage(true);
$validation->setShowDropDown(true);
$validation->setErrorTitle('Input error');
$validation->setError('Value is not in list.');
$validation->setPromptTitle('Pick from list');
$validation->setPrompt('Please pick a value from the drop-down list.');
$validation->setFormula1('"Item A,Item B,Item C"');

https://phpspreadsheet.readthedocs.io/en/develop/topics/recipes/

4

0 回答 0