> ## 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.

# Migration Guides

> This section collects guides for moving existing data and configurations into Nextedy POWERSHEET.

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>;
};

Currently, the available guide covers migrating from Nextedy Risksheet. See [Migrate from Risksheet](/powersheet/guides/migration/migrate-from-risksheet) for the step-by-step process.

<Tip title="Back up before migrating">
  Always create a backup of your `.polarion/` directory and any attached configuration files before starting a migration. Use SVN to preserve a known-good revision you can revert to if needed.
</Tip>

## See Also

* [Getting Started](/powersheet/getting-started/index) -- set up Powersheet from scratch
* [Sheet Configuration Guides](/powersheet/guides/sheet-configuration/index) -- configure sheets after migration
* [Data Model Guides](/powersheet/guides/data-model/index) -- adjust your data model post-migration

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