CT_SUPPLY

Get live cryptocurrency supply data directly in Google Sheets. Pull circulating, total, or max supply for any supported coin in one formula.

Syntax

=CT_SUPPLY(symbol, [type])

Parameters

ParameterRequiredDescriptionExample
symbolYesCryptocurrency ticker"BTC"
typeNoSupply type: "circulating", "total", or "max". Defaults to "circulating""max"

Examples

FormulaResultDescription
=CT_SUPPLY("BTC")19,700,000Bitcoin circulating supply
=CT_SUPPLY("BTC", "max")21,000,000Bitcoin maximum supply cap
=CT_SUPPLY("ETH")120,200,000Ethereum circulating supply
=CT_SUPPLY("BTC", "total")19,700,000Bitcoin total supply
=CT_SUPPLY("SOL", "circulating")410,300,000Solana circulating supply (explicit)

Common use cases

Calculate fully diluted valuation

Multiply max supply by current price to get FDV. Useful for comparing projects at different supply stages.

=CT_SUPPLY("BTC", "max") * CT_PRICE("BTC")

Compare supply metrics

Build a dashboard comparing circulating vs. max supply. Spot coins with high inflation risk or limited remaining issuance.

=CT_SUPPLY("BTC") / CT_SUPPLY("BTC", "max")

This returns the percentage of total supply already in circulation.

Troubleshooting

ProblemSolution
Returns #ERROR!Check the ticker symbol spelling
Returns N/AThis coin may not be in the free plan
max returns N/ASome coins have no max supply cap (e.g., ETH)
Stale dataPress Ctrl+Shift+F9 to force refresh