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

# Configuration FAQ

> Common questions about configuring Nextedy POWERSHEET in Siemens Polarion ALM, including administration access, editor features, and configuration scopes.

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

<Columns cols={2}>
  <Card title="Administration Access" icon="circle-question" href="/powersheet/faq/configuration/administration-access">
    Where do I find the Powersheet configuration pages in Polarion?
  </Card>

  <Card title="Configuration Editor" icon="circle-question" href="/powersheet/faq/configuration/configuration-editor">
    What scopes does the configuration editor support?
  </Card>

  <Card title="Sheet Configuration Assignment" icon="circle-question" href="/powersheet/faq/configuration/sheet-configuration-assignment">
    How does a Powersheet document find its configuration file?
  </Card>
</Columns>

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