Footer not converted in xlsx document

Hello, a customer of ours reported an issue with a xlsx document conversion. It seems the footer (first page) is not converted on the pdf output.

Can you check this please?

Thanks a lot,
Kind regards,
Geert

@Verthosa

Could you please share the following details and we’ll look into this scenario:

  • GroupDocs.Conversion API version that you are using
  • Sample conversion code

This is the output.pdf (314.3 KB) we are getting using API version 23.7 and the following conversion code:

// Create a new instance of the Converter class, providing the path to the Excel file as a parameter.
Converter converter = new Converter(@"D:/F072_Induction Checklist For Transferees & Promotees_Rev 02.xlsx");
// Create a new instance of the PdfConvertOptions class.
PdfConvertOptions options = new PdfConvertOptions();
// Convert the Excel file to a PDF format using the Converter instance and the specified options.
// The resulting PDF file will be saved at the specified path.
converter.Convert(@"D:/output.pdf", options);