in Education by
I have an xlsx file with 4 Sheets. Using the code below I am able to export the first sheet only. I want to be able to export any sheet by name to pdf. Below is what I've done so far: $export_file = 'export.pdf'; $import_file = './media/migration/import.xlsx'; $sheet_name = 'Menu_A'; $rendererName = PHPExcel_Settings::PDF_RENDERER_MPDF; $rendererLibraryPath = '/var/www/public/vendor/mpdf/mpdf'; $object = PHPExcel_IOFactory::load($import_file); $object->setActiveSheetIndexByName($sheet_name); PHPExcel_Settings::setPdfRenderer($rendererName, $rendererLibraryPath); $objWriter = PHPExcel_IOFactory::createWriter($object, 'PDF'); header('Content-Type: application/pdf'); header('Content-Disposition: attachment;filename="' . $export_file . '"'); header('Cache-Control: max-age=0'); $objWriter->save('php://output'); JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
By default, only the first worksheet will be generated for html/pdf output unless you tell the Writer which sheet to display before saving: $objWriter->setSheetIndex(1); (for the second sheet) $objWriter->setSheetIndex($object->getActiveSheetIndex()); (for the current active worksheet) $objWriter->setSheetIndex($object->getIndex($object->getSheetByName($sheet_name))); (for a named worksheet)

Related questions

0 votes
    I am trying to export p-values to Excel from the Stata community-contributed command reghdfe: // get data ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 24, 2022 in Education by JackTerrance
0 votes
    I'm trying to use babel to run my NodeJS program, which includes ES6 syntax and exports from the ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 13, 2022 in Education by JackTerrance
0 votes
    Like the title says: Is it possible to export my javadoc comments for web service method parameters into ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    I've been wondering whether there is a good "git export" solution that creates a copy of a tree without the . ... tree into the index. Select the correct answer from above options...
asked Feb 2, 2022 in Education by JackTerrance
0 votes
    Raju's family runs the cotton export for 3 generations. What type of entrepreneur is he? a) Social ... First Generation entrepreneur Select the correct answer from above options...
asked Dec 24, 2021 in Education by JackTerrance
0 votes
    what is the use of show,export the sprite,duplicate and delete options? Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    Which utilities can we use to export data from sql server to a text file? (a) DTS export wizard ( ... Answers, Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    If my post duplicated, please give me references. because i failed finding post that appropriate from my ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 14, 2022 in Education by JackTerrance
0 votes
    I have a pdf template file that contains one form field. I want to fill out and flatten this form ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    How do I "flatten" a PDF-form? I have a PDF form which needs to be filled. I have a simple ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    Consider the following SVG: The intended effect of the shape-rendering="crispEdges" annotation is to prevent ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 24, 2022 in Education by JackTerrance
...