Ask Your Question
2

How can I use unoconv to transform a certain sheet?

asked 2022-12-05 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-02-03 07:00:00 +0000

devzero gravatar image

To use unoconv to transform a certain sheet in a document, you need to specify the sheet number or name explicitly in the command line. Here is an example:

unoconv -f pdf -e SheetName=MySheet -o output.pdf input.xlsx

In this example, we are converting the Excel file input.xlsx to PDF format and specifying that we want to extract the sheet named MySheet using the -e option. The output will be saved in output.pdf.

You can also specify the sheet number using -e SheetNo=1 instead of -e SheetName=MySheet, where 1 is the sheet number (starting from 1).

Note that the exact syntax of the command may vary depending on your system and the version of unoconv you are using. Please consult the unoconv documentation or use the --help option for more information.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-12-05 11:00:00 +0000

Seen: 15 times

Last updated: Feb 03 '22