필터 지우기
필터 지우기

How to save an Excel sheet as PDF through MATLAB?

조회 수: 31 (최근 30일)
Ziggy Zigg
Ziggy Zigg 2012년 11월 3일
답변: Intissar El Bouanani 2023년 8월 10일
I am using the following code:
hExcel = actxserver('Excel.Application');
hWorkbook = hExcel.Workbooks.Open(sprintf('%s','C:\test.xlsx'));
hWorksheet = hWorkbook.Sheets.Item(1);
hRange = hWorksheet.Range('A1:O10');
hRange.ExportAsFixedFormat('xlTypePDF','test_out.pdf');
The Excel ActiveX server allows me to do the usual stuff, but the last line doesn't do anything. Neither does it throw any error.
Does anyone know how to do this?
  댓글 수: 1
Praveen
Praveen 2016년 12월 28일
hRange.ExportAsFixedFormat('xlTypePDF','test_out.pdf'); In this code give the path name, it works.. For example 'C:\test_out.pdf' instead of test

댓글을 달려면 로그인하십시오.

채택된 답변

Cel Kulasekaran
Cel Kulasekaran 2015년 1월 13일
편집: Cel Kulasekaran 2015년 1월 13일
First, set the print area within the workbook itself, then you'll need to call ExportAsFixedFormat on the worksheet or workbook object. You cannot call it on the range object. Hope this helps, see below:
hExcel = actxserver('Excel.Application');
hWorkbook = hExcel.Workbooks.Open(sprintf('%s','C:\test.xlsx'));
hWorksheet = hWorkbook.Sheets.Item(1);
% print this sheet to PDF
hWorksheet.ExportAsFixedFormat('xlTypePDF','C:\test_out.pdf');
  댓글 수: 5
Garrett Cassidy
Garrett Cassidy 2021년 1월 27일
Is there a way to make it save 'Entire workbook'? When I manualy save as PDF I can click 'Options' then save 'Entire workbook' this saves each sheet as a page in the PDF.
Garrett Cassidy
Garrett Cassidy 2021년 1월 27일
Answer my own question:
hExcel = actxserver('Excel.Application');
hWorkbook = hExcel.Workbooks.Open(sprintf('%s','C:\test'));
% Pring the workbook
hWorkbook.ExportAsFixedFormat('xlTypePDF','C:\test_out.pdf');

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Intissar El Bouanani
Intissar El Bouanani 2023년 8월 10일
it is possible to print the selected field in one page

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by