> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nextedy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Export to PDF

> Nextedy POWERSHEET has no built-in PDF export. Sheet data exports to Microsoft Excel (.xlsx) only; use your browser's Print to PDF if a PDF is required.

export const LastReviewed = ({date}) => {
  if (!date) return null;
  const formatted = new Date(`${date}T00:00:00Z`).toLocaleDateString("en-US", {
    year: "numeric",
    month: "long",
    day: "numeric",
    timeZone: "UTC"
  });
  return <p className="mt-10 text-sm text-gray-400 dark:text-zinc-500 not-prose">
      Last reviewed on {formatted}
    </p>;
};

<Warning title="Powersheet has no built-in PDF export">
  Powersheet does **not** provide a PDF export. The sheet's **Menu > Export** offers a single format — **Microsoft Excel (.xlsx)**. There is no "Export to PDF" action in the product.
</Warning>

## Export your sheet (Excel)

The only built-in Powersheet export is Excel. Open the sheet's **Menu > Export > Microsoft Excel (.xlsx)** — see [Export to Excel](/powersheet/guides/export/export-to-excel). The exported workbook preserves the active view's visible columns, hierarchy, grouping, and cell formatting.

## If you need a PDF

Because Powersheet has no PDF export, produce the PDF outside Powersheet — for example, use your browser's **Print > Save as PDF** on the document page. This is a standard browser capability, not a Powersheet feature, so layout fidelity depends on the browser rather than on Powersheet.

## See Also

* [Export to Excel](/powersheet/guides/export/export-to-excel) — the supported Powersheet export
* [Export Guides](/powersheet/guides/export/index) — export overview

<LastReviewed date="2026-06-24" />
