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

> Nextedy RISKSHEET stores its configuration in sheet configuration files attached to Polarion LiveDoc documents.

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={3}>
  <Card title="Use the Configuration Editor" icon="file" href="/risksheet/guides/configuration/using-config-editor">
    Open and navigate the built-in editor to modify columns, levels, formulas, and styling settings directly in the browser.
  </Card>

  <Card title="Find Configuration Files" icon="file" href="/risksheet/guides/configuration/finding-config-files">
    Locate where your sheet configuration is stored and determine whether it comes from a document attachment or a global template.
  </Card>

  <Card title="Set Up Global Templates" icon="file" href="/risksheet/guides/configuration/global-templates">
    Create reusable configuration templates that multiple documents inherit automatically across your organization.
  </Card>

  <Card title="Configure Multi-Project Setup" icon="file" href="/risksheet/guides/configuration/multi-project-setup">
    Share configurations and load work items across multiple Polarion projects in a single Risksheet view.
  </Card>

  <Card title="Configure Template Paths" icon="file" href="/risksheet/guides/configuration/template-path-configuration">
    Define folder paths where new risk documents can be created in your project structure.
  </Card>

  <Card title="Override Template Configuration" icon="file" href="/risksheet/guides/configuration/document-config-override">
    Detach a document from its global template to apply document-specific configuration changes.
  </Card>
</Columns>

<Frame>
  <img src="https://mintcdn.com/none-17b4493f/-Icoak49xQVOW38R/risksheet/diagrams/guides/configuration/index/diagram-1.svg?fit=max&auto=format&n=-Icoak49xQVOW38R&q=85&s=a42e5bdb00f08035de5ae919bd6e7158" alt="diagram" style={{ maxWidth: "600px", width: "100%" }} width="600" height="260" data-path="risksheet/diagrams/guides/configuration/index/diagram-1.svg" />
</Frame>

<Tip title="Where to Start">
  If you are new to Risksheet configuration, begin with [Use the Configuration Editor](/risksheet/guides/configuration/using-config-editor) to explore your current settings visually, then move to [Set Up Global Templates](/risksheet/guides/configuration/global-templates) to establish shared configurations across your organization.
</Tip>

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