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

> Common questions about migrating to or upgrading Nextedy POWERSHEET in Siemens Polarion ALM.

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

<Info title="Verify in application">
  This page covers general migration guidance based on Powersheet's architecture. Specific version-to-version migration steps may vary. Always consult the release notes for your target version and contact Nextedy support for upgrade assistance.
</Info>

<Columns cols={2}>
  <Card title="Upgrading Powersheet" icon="circle-question" href="/powersheet/faq/migration/upgrading-powersheet">
    How do I upgrade Powersheet to a new version?
  </Card>

  <Card title="Configuration Migration" icon="circle-question" href="/powersheet/faq/migration/configuration-migration">
    Can I move configurations between projects?
  </Card>
</Columns>

<LastReviewed date="2026-07-02" />
