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

# Risk Management

> Nextedy RISKSHEET provides comprehensive risk management capabilities for FMEA, HARA, STRIDE, and custom risk analysis workflows.

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

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

## Risk Analysis Methodologies

**[Configure FMEA Workflows](/risksheet/guides/risk-management/fmea-configuration)** -- Set up Failure Mode and Effects Analysis with severity, occurrence, and detection scales, RPN calculation formulas, and conditional formatting for risk prioritization per the AIAG & VDA FMEA Handbook.

**[Configure HARA Workflows](/risksheet/guides/risk-management/hara-configuration)** -- Configure Hazard Analysis and Risk Assessment for automotive functional safety per ISO 26262 with ASIL determination, hazard classification, and safety goal traceability.

**[Implement STRIDE Analysis](/risksheet/guides/risk-management/stride-analysis)** -- Configure Risksheet for cybersecurity threat analysis using the STRIDE methodology (Spoofing, Tampering, Repudiation, Information Disclosure, Denial of Service, Elevation of Privilege) per ISO/SAE 21434.

## Risk Configuration

**[Configure Multiple Risk Types](/risksheet/guides/risk-management/multiple-risk-types)** -- Define multiple risk item types within a single Risksheet for complex analysis scenarios that require separate failure mode categories, different rating scales, or distinct column layouts.

**[Set Up Risk Matrices](/risksheet/guides/risk-management/risk-matrices)** -- Configure severity, occurrence, and detection rating scales with RPN calculation formulas and conditional formatting rules to visualize risk levels through color-coded matrices.

**[Set Up Action Priority Matrix](/risksheet/guides/risk-management/action-priority-matrix)** -- Implement action priority as an alternative to traditional RPN scoring, aligning with the AIAG & VDA FMEA Handbook recommendation for action priority over numeric risk ranking.

## Downstream Mitigation

**[Configure Downstream Tasks](/risksheet/guides/risk-management/downstream-tasks)** -- Set up mitigation task tracking linked to risk items with type configuration, role assignment, and status monitoring for corrective and preventive actions.

**[Configure Multiple Downstream Types](/risksheet/guides/risk-management/multiple-downstream-types)** -- Define separate downstream item categories (such as verification tasks, design changes, and process controls) for stepwise risk mitigation workflows with distinct tracking for each category.

**[Configure Remove/Delete Actions](/risksheet/guides/risk-management/remove-delete-risk)** -- Control how risk items are removed from the grid using hard delete, soft delete, or status-based removal strategies to maintain audit trail integrity.

<Tip title="Start with a Template">
  Risksheet includes built-in templates for FMEA, HARA, and STRIDE analysis. Use these as starting points and customize the rating scales, formulas, and column layout to match your organization's risk methodology. See [Basic Configuration](/risksheet/getting-started/basic-configuration) for template setup instructions.
</Tip>

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