Coverting Excel file to PDF does not render all pages

Rendering the attached document with GroupDocs.Conversion 21.5.0 to PDF does not render all pages.
With “loadOptions.ShowHiddenSheets” set to false, only worksheet 4 is rendered. (instead of 3 and 4)
With “loadOptions.ShowHiddenSheets” set to true, only worksheet 2 and 4 are rendered. (instead of all sheets)

Classeur1.zip (6.1 KB)

var loadOptions= new SpreadsheetLoadOptions();
loadOptions.OnePagePerSheet = false;
loadOptions.SkipEmptyRowsAndColumns = false;
loadOptions.ShowHiddenSheets = true;

var options = new PdfConvertOptions();

using (var conv = new Converter(documentPath, () => loadOptions))
{
	conv.Convert(@"D:\output\output.pdf", options);
}

@Clemens_Pestuka

This issue is reproduced at our end. Hence, we’ve logged it in our internal issue tracking system with ID CONVERSIONNET-4682. You’ll be notified in case of any update.

1 Like

The issues you have found earlier (filed as CONVERSIONNET-4682) have been fixed in this update. This message was posted using Bugs notification tool by nikola.yankov

1 Like