CoinTable vs CRYPTOFINANCE for Google Sheets (2026)

·6 min read

TL;DR

CRYPTOFINANCE stopped working reliably after Kraken sunset Cryptowatch in 2023. CoinTable is a drop-in replacement — same concept, simpler formulas, no API key required. Migration takes 5 minutes with find-and-replace.

What Happened to CRYPTOFINANCE?

If you used Google Sheets for crypto before 2023, you probably used CRYPTOFINANCE. It was the go-to add-on: type =CRYPTOFINANCE("BTC/USD") and get a live price. It worked well for years.

Then Kraken acquired Cryptowatch (the data provider behind CRYPTOFINANCE) and eventually shut it down. The add-on didn't disappear from the Marketplace overnight, but the backend degraded. Users started seeing #ERROR! values, rate limits, and stale prices. Today, CRYPTOFINANCE is effectively abandonware — still installable, rarely functional.

CoinTable, a Google Sheets add-on for cryptocurrency prices, fills that gap. It does the same job — live crypto data in Sheets via formulas — but with an actively maintained backend. If you're looking for the full setup walkthrough, see how to get crypto prices in Google Sheets.

Feature Comparison

FeatureCoinTableCRYPTOFINANCE
StatusActive, maintained (2026)Abandonware (Cryptowatch sunset 2023)
API key requiredNoYes (Kraken API key)
Setup time30 seconds10+ minutes (API key generation, configuration)
Supported coins10,000+40,000+ (when it was working)
Price formula=CT_PRICE("BTC")=CRYPTOFINANCE("BTC/USD")
Multi-currency=CT_PRICE("BTC", "EUR")=CRYPTOFINANCE("BTC/EUR")
24h change=CT_CHANGE("BTC")Not available
Market cap=CT_MARKETCAP("BTC")Not available
Volume=CT_VOLUME("BTC")=CRYPTOFINANCE("BTC/USD", "volume")
Rank=CT_RANK("BTC")Not available
All-time high=CT_ATH("BTC")Not available
24h high/low=CT_HIGH("BTC") / =CT_LOW("BTC")Not available
Supply=CT_SUPPLY("BTC")Not available
ReliabilityHigh (99.9% uptime)Low (frequent #ERROR! values)
SupportActive (email, docs)None
Free tier300 requests/monthWas free (now broken)
Paid tier$5/month (unlimited requests, auto-refresh)N/A

The key difference beyond reliability: CoinTable has dedicated formulas for market cap, rank, ATH, supply, 24h high/low, and 24h change. CRYPTOFINANCE only offered price and volume (via a second parameter). This means CoinTable lets you build richer dashboards without workarounds.

Formula Migration Guide

Replacing CRYPTOFINANCE formulas with CoinTable equivalents is straightforward. Here's the mapping:

CRYPTOFINANCE FormulaCoinTable EquivalentNotes
=CRYPTOFINANCE("BTC/USD")=CT_PRICE("BTC")USD is the default currency
=CRYPTOFINANCE("ETH/USD")=CT_PRICE("ETH")Same pattern for all coins
=CRYPTOFINANCE("SOL/USD")=CT_PRICE("SOL")
=CRYPTOFINANCE("BTC/EUR")=CT_PRICE("BTC", "EUR")Currency as second argument
=CRYPTOFINANCE("BTC/GBP")=CT_PRICE("BTC", "GBP")
=CRYPTOFINANCE("ETH/USD", "volume")=CT_VOLUME("ETH")Dedicated volume formula
=CRYPTOFINANCE("BTC/USD", "marketcap")=CT_MARKETCAP("BTC")If you had a workaround

New Formulas With No CRYPTOFINANCE Equivalent

After migrating, take advantage of functions that CRYPTOFINANCE never offered:

=CT_CHANGE("BTC")       → 24h price change (%)
=CT_RANK("BTC")         → CoinGecko market cap rank
=CT_ATH("BTC")          → All-time high price
=CT_SUPPLY("BTC")       → Circulating supply
=CT_HIGH("BTC")         → 24h high
=CT_LOW("BTC")          → 24h low

Step-by-Step Migration

1. Install CoinTable

Open your Google Sheet, go to Extensions → Add-ons → Get add-ons, search for "CoinTable", and install it. No API key, no configuration. It's ready to use immediately.

2. Find All CRYPTOFINANCE Formulas

Use Edit → Find and replace (Ctrl+H / Cmd+H):

Note the count. You'll replace them in batches.

3. Replace USD Price Formulas

Most CRYPTOFINANCE usage follows the pattern =CRYPTOFINANCE("TICKER/USD"). The fastest approach:

  1. Find: =CRYPTOFINANCE("BTC/USD")
  2. Replace with: =CT_PRICE("BTC")
  3. Click Replace all

Repeat for each coin ticker in your sheet: ETH, SOL, ADA, etc.

If you have dozens of coins and they all use the same pattern, a more efficient method:

  1. Add a helper column with =SUBSTITUTE(FORMULATEXT(A2), "CRYPTOFINANCE(""", "CT_PRICE(""") to generate the new formula text
  2. Review the output
  3. Copy-paste as formulas

4. Replace Non-USD Price Formulas

For formulas like =CRYPTOFINANCE("BTC/EUR"):

  1. Find: =CRYPTOFINANCE("BTC/EUR")
  2. Replace with: =CT_PRICE("BTC", "EUR")

The syntax difference: CRYPTOFINANCE used a slash-separated pair (BTC/EUR), CoinTable uses a second argument ("BTC", "EUR").

5. Replace Volume Formulas

If you used =CRYPTOFINANCE("BTC/USD", "volume"):

  1. Find: CRYPTOFINANCE("BTC/USD", "volume")
  2. Replace with: CT_VOLUME("BTC")

6. Verify and Clean Up

After replacing all formulas:

  1. Search for CRYPTOFINANCE one more time — the count should be zero
  2. Check that all cells show values (not #ERROR! or #NAME?)
  3. Uninstall the CRYPTOFINANCE add-on: Extensions → Add-ons → Manage add-ons → find CRYPTOFINANCE → click the three dots → Uninstall

Removing the old add-on prevents conflicts and cleans up your Extensions menu.

Common Questions During Migration

"My CRYPTOFINANCE formulas still work sometimes — should I bother migrating?"

Yes. "Sometimes" is the problem. Intermittent failures corrupt portfolio totals, trigger false alerts, and make your sheet unreliable. A migration now takes 10 minutes; debugging random #ERROR! values wastes more time than that every week.

"Does CoinTable support the same coins?"

CoinTable covers 10,000+ coins via CoinGecko data. If your coin is listed on CoinGecko, CoinTable has it. The only coins you might miss are very new or very obscure tokens that had exchange-specific pairs on Cryptowatch.

"What about historical prices?"

CRYPTOFINANCE had limited historical price support. CoinTable focuses on current market data (price, volume, market cap, rank, ATH, supply, 24h high/low, 24h change). For historical OHLCV data, you'd need a separate API integration.

What to Explore Next

Once your migration is done, your sheet is running on a maintained, reliable backend. From here you can expand:

Frequently Asked Questions

Is CRYPTOFINANCE for Google Sheets still working?

CRYPTOFINANCE is effectively abandonware. After Kraken acquired and then sunset Cryptowatch, the add-on lost its data source. Many users report frequent errors, missing data, and no support. We recommend switching to CoinTable.

How do I replace CRYPTOFINANCE formulas with CoinTable?

Replace =CRYPTOFINANCE("BTC/USD") with =CT_PRICE("BTC"). CoinTable uses simple ticker symbols instead of pair notation. Install CoinTable from Google Workspace Marketplace — no API key needed.

Does CoinTable require a Kraken API key like CRYPTOFINANCE?

No. CoinTable requires zero API keys and zero configuration. CRYPTOFINANCE required a Kraken/Cryptowatch API key. CoinTable is install-and-use in 30 seconds.

What happened to Cryptowatch and CRYPTOFINANCE?

Kraken acquired Cryptowatch, then sunset the service. The CRYPTOFINANCE add-on, which depended on Cryptowatch data, effectively became abandonware with no active maintenance or support.

Can CoinTable do everything CRYPTOFINANCE did?

CoinTable covers all common use cases: live prices (=CT_PRICE), 24h changes (=CT_CHANGE), market cap (=CT_MARKETCAP), volume (=CT_VOLUME), and more for 10,000+ coins. CRYPTOFINANCE offered exchange-specific pricing which CoinTable does not currently provide.

Stop copying prices manually

Free covers 300 requests a month. Plus is $5/month for unlimited requests and 10,000+ coins.