Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Add Worksheets to Existing Excel File
Add Worksheets to Existing Excel File
PHP Code
$dataDir = '';
// Create Aspose.Cells Helper Object
$ptr = new \COM('Aspose.Cells.Interop.InteropHelper');
// Opening through Path
// Creating a Workbook object and opening an Excel file using its file path
$workbook = $ptr->New("Aspose.Cells.Workbook",array($dataDir . '/book1.xls'));
$worksheets = $ptr->Get($workbook,"Worksheets",array());
$worksheet_index = $ptr->Call($worksheets,"Add_2",array());
$worksheet = $ptr->Get($worksheets,"Item",array($worksheet_index));
$ptr->Set($worksheet,"Name","My Worksheet",array());
$ptr->Call($workbook,"Save",array($dataDir."/output.xls"));
print "Completed." . PHP_EOL;
Download Add Worksheets to Existing Excel File (Aspose.Cells) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.