> For the complete documentation index, see [llms.txt](https://helpcenter.channable.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://helpcenter.channable.com/manage-improve-product-data/manage-product-and-improve-data-de/regeln-massenbearbeitung-und-anreicherung/so-verwendest-du-aktionen-dann-in-regeln/regelaktion-doppelte-artikel-entfernen.md).

# Regelaktion: Doppelte Artikel entfernen

### Anwendungsfälle

* Schließe alle Artikel mit doppelten Identifikatoren aus
* Schließe alle bis auf einen Artikel mit doppelten Identifikatoren aus. Zum Beispiel: Behalte den Artikel mit dem niedrigsten Preis
* Schließe die Artikel mit höheren Preisen aus

Verwende die **Doppelte Artikel entfernen** Aktion zum Umgang mit doppelten Artikeln in deinen Produktdaten. Viele Kanäle akzeptieren beispielsweise nicht die Wiederverwendung von GTIN-Codes für verschiedene Artikel, da diese als eindeutige Identifikatoren gedacht sind.

### Schließe alle Artikel mit doppelten Identifikatoren aus

Wähle das Feld, das zum Entfernen doppelter Artikel verwendet werden soll. Du kannst z. B. alle Artikel mit doppelten Werten im **id** Feld ausschließen.

<figure><img src="/files/e43f512193b8eed1d47f14dd36219ecee5c3a950" alt=""><figcaption></figcaption></figure>

Wendet man diese Regel auf die Beispieldaten an, werden sowohl „Nike Air Max sneaker“ als auch „Adidas Classic sneaker“ ausgeschlossen, weil sie dieselbe ID haben.

| id  | Titel                  |
| --- | ---------------------- |
| 123 | Nike Air Max Sneaker   |
| 123 | Adidas Classic Sneaker |
| 654 | New Balance Sneaker    |

### Schließe alle bis auf einen Artikel mit doppelten Identifikatoren aus

In manchen Fällen möchtest du einen der doppelten Artikel behalten. Zum Beispiel, wenn du nur eine Variante mit dem niedrigsten Preis bewerben willst.

<figure><img src="/files/65e648f02e62be5a18a3fc95e8cd4715d4993539" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
Hinweis: Markiere das Kästchen „Zahlen sortieren“, wenn du numerische Werte vergleichen möchtest. Wenn du Textwerte vergleichen willst, stelle sicher, dass das Kästchen „Zahlen sortieren“ nicht markiert ist.
{% endhint %}

### Schließe die Artikel mit den höheren Preisen aus

Die Round Design Tables haben unterschiedliche Größen, teilen aber dieselbe ID. Wenn du nur den niedrigsten Preis bewerben möchtest, verwende **Doppelte Artikel entfernen** um **die Artikel mit den höheren Preisen auszuschließen**.

| id  | Titel                            | Preis  |
| --- | -------------------------------- | ------ |
| 234 | Der Round Design Table 100x100cm | 650.00 |
| 234 | Der Round Design Table 120x120cm | 750.00 |
| 234 | Der Round Design Table 140x140cm | 850.00 |
| 653 | Der Square Design Table 50x50cm  | 500.00 |

Nach Anwendung der Duplikat-Entfernungsregel sehen die Ausgabedaten wie folgt aus:

| id  | Titel                            | Preis  |
| --- | -------------------------------- | ------ |
| 234 | Der Round Design Table 100x100cm | 650.00 |
| 653 | Der Square Design Table 50x50cm  | 500.00 |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://helpcenter.channable.com/manage-improve-product-data/manage-product-and-improve-data-de/regeln-massenbearbeitung-und-anreicherung/so-verwendest-du-aktionen-dann-in-regeln/regelaktion-doppelte-artikel-entfernen.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
