> ## Documentation Index
> Fetch the complete documentation index at: https://confidence.spotify.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Run Exclusive Experiments

> Learn how to create exclusivity groups and make experiments mutually exclusive.

export const HowToSchema = ({name, description, steps = []}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "HowTo",
    name,
    description
  };
  if (steps.length > 0) {
    schema.step = steps.map((s, i) => ({
      "@type": "HowToStep",
      position: i + 1,
      name: typeof s === "string" ? s : s.name,
      text: typeof s === "string" ? s : s.text || s.name
    }));
  }
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<HowToSchema
  name="How to Run Exclusive Experiments"
  description="Learn how to create exclusivity groups and make experiments mutually exclusive."
  steps={[
"Go to Surfaces on the left sidebar",
"Select the surface",
"Select Settings",
"Select Add exclusivity group",
{
  name: "Configure the exclusivity group",
  text: "Give it a name and description. Choose whether it should be marked as suggested, which means it will be automatically pre-selected for experiments on the surface.",
},
{
  name: "Go to the experiment",
  text: "Go to Confidence and find the A/B test or rollout you want to make mutually exclusive with other experiments.",
},
{
  name: "Select the surface",
  text: "Select the surface on which the exclusivity group lives.",
},
{
  name: "Select the exclusivity group",
  text: "Select the exclusivity group you want to use.",
},
"Click Save",
]}
/>

[Exclusivity groups](../experiments/exclusive-experiments) ensure that experiments don't overlap, so no user is in multiple experiments at the same time.

## Create an Exclusivity Group

If you don't already have an exclusivity group, create one first:

<Steps>
  <Step title="Go to Surfaces on the left sidebar" />

  <Step title="Select the surface" />

  <Step title="Select Settings" />

  <Step title="Select Add exclusivity group" />

  <Step title="Configure the exclusivity group">
    Give it a name and description. Choose whether it should be marked as suggested, which means it will be automatically pre-selected for experiments on the surface.
  </Step>
</Steps>

## Make an Experiment Exclusive

<Steps>
  <Step title="Go to the experiment">
    Go to Confidence and find the A/B test or rollout you want to make mutually exclusive with other experiments.
  </Step>

  <Step title="Select the surface">
    Select the surface on which the exclusivity group lives.
  </Step>

  <Step title="Select the exclusivity group">
    Select the exclusivity group you want to use.
  </Step>

  <Step title="Click Save" />
</Steps>

The experiment is now mutually exclusive with other experiments that share the same exclusivity group.

## Related Resources

<CardGroup cols={2}>
  <Card title="Exclusive Experiments Reference" href="/docs/experiments/exclusive-experiments">
    Deep dive into exclusivity groups and configuration
  </Card>

  <Card title="Create a Surface" href="/docs/how-to-guides/create-surface">
    Organize experiments with surfaces
  </Card>

  <Card title="Launch an A/B Test" href="/docs/quickstarts/launch-abtest">
    Run your first exclusive experiment
  </Card>

  <Card title="Surfaces Reference" href="/docs/surfaces/introduction">
    Learn about surface management
  </Card>
</CardGroup>
