DRAGON_INVENTORY

Shows SKU inventory quantities over time with dates or period buckets as columns.

Syntax

=DRAGON_INVENTORY(account, [ASIN/SKU], [marketplace], [fulfillment], [period], [disposition], [columns], [header], [transpose])

Parameters in [brackets] are optional. Leave an optional parameter blank to include everything.

This page is also available inside Sheets – type =DRAGON_INVENTORY("help") in any cell to get the same reference without leaving your spreadsheet.

Sample output

Illustrative values – your sheet shows your account's live data.

A1fx=DRAGON_INVENTORY("Myaccount", "", "US", "FBA", "last_7_days", "total")
ABCDEFG
1skuasin2026-07-212026-07-202026-07-192026-07-182026-07-17
2MB-TEE-BLK-L_FBAB0EXAMPLE137547188105
3MB-TEE-NVY-M_FBAB0EXAMPLE268851022239
4MB-HAT-GRY_FBAB0EXAMPLE399116365370
5MB-MUG-11OZ_FBAB0EXAMPLE433506784101

Parameters

ParameterRequiredDescription
accountRequiredAccount nickname or Amazon account id.
ASIN/SKUOptionalOptional ASIN, SKU, or comma/space separated list. Also accepts a cell range like A2:A100 or INDIRECT() pointing to a list.
marketplaceOptionalOptional marketplace/country code such as US, CA, or MX.
fulfillmentOptionalOptional fulfillment filter: FBA or FBM. Default: FBA.
periodOptionalOptional period such as last 7 days, last 30 days, or last 90 days. Default: last 7 days.
dispositionOptionalOptional inventory disposition: sellable, incoming, reserved, unsellable, available, or total. Default: total.
columnsOptionalOptional comma-separated output columns before the date columns.
headerOptionalUse no, false, or 0 to suppress the output header row. Default: Yes.
transposeOptionalUse yes, true, or 1 to transpose the output.

The period accepts values like last_30_days, this_month, 2026Q1, or ranges like 2026-01-01..today – see the full period reference.

Columns

Columns are evaluated left to right: a field or group name adds columns, a leading - removes them. default and all select the default or full column set – for example compact,-marketplace.

ColumnDefaultDescription
marketplaceNoMarketplace
skuYesSKU
asinYesASIN
fnskuNoFNSKU
conditionNoCondition
fulfillmentNoFulfillment
statusNoStatus
per_unit_volumeNoPer unit volume
reserved_future_supply_quantityNoFBA reserved future supply quantity

Column groups

Groups select several columns at once and combine with single fields in the columns parameter.

compact

Examples

=DRAGON_INVENTORY("Myaccount", "", "US", "FBA", "last 30 days", "total")
=DRAGON_INVENTORY("Myaccount", "", "US", "FBA", "last 30 days", "sellable,incoming", "compact")

Notes

  • fulfillment: defaults to FBA. use FBM or FBA,FBM only when those quantities should be included.
  • disposition: additive and deduped. accepted values are sellable, incoming, reserved, unsellable, available, total. default is total.
  • columns: use compact to show only inventory date columns. default and all are also supported.
  • columns are evaluated left to right. A field or group adds columns; prefix with - to remove a field or group.