# Figure collection and duplicate tracker — CollectorLedger

Canonical: https://thedollscout.com/workbench/collectorledger
Language: en
Method version: 2026-09-19.2

Count owned figures and duplicates while preserving recorded purchase costs.

## How this tool works

Group by series + figure + variant. Duplicates = max(quantity − 1, 0). Recorded cost = sum(quantity × paid_each), kept separate by currency.

## Input format

- Collection records: `series,figure,variant,quantity,paid_each,currency`

## Reproducible example

All prefilled business examples are fictional. Replace them with your own checked inputs.

```json
{
  "columns": [
    "Series",
    "Figure",
    "Variant",
    "Owned",
    "Duplicates",
    "Recorded cost",
    "Currency"
  ],
  "rows": [
    [
      "Sample Forest",
      "Moss",
      "Standard",
      2,
      1,
      "36.00",
      "EUR"
    ],
    [
      "Sample Forest",
      "Rain",
      "Standard",
      1,
      0,
      "22.00",
      "EUR"
    ]
  ]
}
```

## Limits and assumptions

Recorded purchase costs: EUR 58.00

Purchase cost is not resale value or rarity. No price feed, authenticity certification or cloud backup is provided.

Browser-based tools · Your inputs stay in this browser. No account, cloud backup or paid membership is provided.

[RFC 4180 — CSV format](https://www.rfc-editor.org/rfc/rfc4180)
