Excel API Library for Java - Sample Browser | Document Solutions | Open and save xlsm file
[
フレーム]
src="bundle.js">
Document Solutions for Excel can open xlsm files, and all macros and Form Controls will be preserved after exporting to xlsm again.
// Create a new workbook
Workbook workbook = new Workbook();
// Document Solutions for Excel supports open xlsm file
workbook.open("macros.xlsm");
// Macros can be preserved after saving
workbook.save("macros-exported.xlsm");
// Create a new workbook
var workbook = Workbook()
// Document Solutions for Excel supports open xlsm file
workbook.open("macros.xlsm")
// Macros can be preserved after saving
workbook.save("macros-exported.xlsm")