Syntax
=DRAGON_BSR_RANK(account, [ASIN/SKU], [marketplace], [fulfillment], [period], [rank type], [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_BSR_RANK("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_BSR_RANK("Myaccount", "B0C87GTM5G", "US", "FBA", "last 30 days")| A | B | C | |
|---|---|---|---|
| 1 | asin | rank_type | rank_title |
| 2 | B0EXAMPLE1 | 1290 | 1290 |
| 3 | B0EXAMPLE2 | 1224 | 1224 |
| 4 | B0EXAMPLE3 | 1255 | 1255 |
| 5 | B0EXAMPLE4 | 1286 | 1286 |
Parameters
| Parameter | Required | Description |
|---|---|---|
| account | Required | Account nickname or Amazon account id. |
| ASIN/SKU | Optional | Optional ASIN, SKU, or comma/space separated ASIN/SKU list. Also accepts a cell range like A2:A100 or INDIRECT() pointing to a list. |
| marketplace | Optional | Optional marketplace/country code such as US, CA, or MX. |
| fulfillment | Optional | Optional fulfillment filter: FBA or FBM. |
| period | Optional | Optional period such as last 90 days, 2026-04, or 2026. Default: last 90 days. |
| rank type | Optional | Optional rank type filter. |
| columns | Optional | Optional comma-separated output columns. |
| header | Optional | Use no, false, or 0 to suppress the output header row. Default: Yes. |
| transpose | Optional | Use 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.
| Column | Default | Description |
|---|---|---|
| marketplace | No | Marketplace. |
| marketplace_id | No | Marketplace id. |
| asin | Yes | Asin. |
| fulfillment | No | Fulfillment. |
| rank_type | Yes | Rank type. |
| rank_title | Yes | Rank title. |
| rank_key | No | Rank key. |
| seller_id | No | Seller id. |
Column groups
Groups select several columns at once and combine with single fields in the columns parameter.
compact
Examples
=DRAGON_BSR_RANK("Myaccount", "B0C87GTM5G", "US", "FBA", "last 30 days")
=DRAGON_BSR_RANK("Myaccount", "B0C87GTM5G", "US", "FBA", "last 30 days", "", "compact")
Notes
- columns: title is exposed as rank_title because it is the ranking group/category title, not the product title.
- columns: use compact to show only rank 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.