CoinTable vs CRYPTOFINANCE for Google Sheets (2026)
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
| Feature | CoinTable | CRYPTOFINANCE |
|---|---|---|
| Status | Active, maintained (2026) | Abandonware (Cryptowatch sunset 2023) |
| API key required | No | Yes (Kraken API key) |
| Setup time | 30 seconds | 10+ minutes (API key generation, configuration) |
| Supported coins | 10,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 |
| Reliability | High (99.9% uptime) | Low (frequent #ERROR! values) |
| Support | Active (email, docs) | None |
| Free tier | 300 requests/month | Was 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 Formula | CoinTable Equivalent | Notes |
|---|---|---|
=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):
- Find:
CRYPTOFINANCE - Check "Search using regular expressions" if you want to be precise
- Click "Find" to see how many cells use it
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:
- Find:
=CRYPTOFINANCE("BTC/USD") - Replace with:
=CT_PRICE("BTC") - 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:
- Add a helper column with
=SUBSTITUTE(FORMULATEXT(A2), "CRYPTOFINANCE(""", "CT_PRICE(""")to generate the new formula text - Review the output
- Copy-paste as formulas
4. Replace Non-USD Price Formulas
For formulas like =CRYPTOFINANCE("BTC/EUR"):
- Find:
=CRYPTOFINANCE("BTC/EUR") - 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"):
- Find:
CRYPTOFINANCE("BTC/USD", "volume") - Replace with:
CT_VOLUME("BTC")
6. Verify and Clean Up
After replacing all formulas:
- Search for
CRYPTOFINANCEone more time — the count should be zero - Check that all cells show values (not
#ERROR!or#NAME?) - 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:
- Compare CoinTable with other alternatives in the best crypto add-ons for Google Sheets roundup
- See how CoinTable stacks up against the CoinGecko API approach in CoinTable vs CoinGecko for Sheets
- Bookmark the crypto formulas cheat sheet for a quick reference of every CoinTable function
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.
Related Articles
View allBest Crypto Add-ons for Google Sheets (2026)
Compare the top 5 crypto add-ons for Google Sheets in 2026. CoinTable, CoinGecko, Cryptofinance, Cryptosheets, and Wisesheets reviewed.
10 min readCoinTable vs CoinGecko for Google Sheets
Honest comparison of CoinTable and CoinGecko for getting crypto prices in Google Sheets. Setup, features, pricing, and which to choose.
6 min readGOOGLEFINANCE Crypto — Limitations & Better Alternatives (2026)
GOOGLEFINANCE only supports ~10 crypto coins with 20-min delay. Learn its limitations and switch to CoinTable for 10,000+ coins in Google Sheets.
8 min read