Examples
Practical ways to use CoinTable formulas in Google Sheets. Copy any example and customize it for your needs.
Portfolio Tracker
Track the value and daily change of your crypto holdings.
Formulas used: CT_PRICE, CT_CHANGE
Setup
- Column A: coin symbols (
BTC,ETH,SOL) - Column B: amount held (
0.5,10,100) - Column C: current price —
=CT_PRICE(A2) - Column D: total value —
=B2*C2 - Column E: 24h change —
=CT_CHANGE(A2)
Expected result
| Symbol | Amount | Price | Value | 24h Change |
|---|---|---|---|---|
| BTC | 0.5 | $67,432.15 | $33,716.08 | -2.34% |
| ETH | 10 | $3,456.78 | $34,567.80 | +1.25% |
| SOL | 100 | $124.33 | $12,433.00 | +5.67% |
Watchlist Dashboard
Monitor multiple coins with price, high, low, and daily change at a glance.
Formulas used: CT_PRICE, CT_HIGH, CT_LOW, CT_CHANGE
Setup
- Column A: coin symbols
- Column B:
=CT_PRICE(A2) - Column C:
=CT_HIGH(A2) - Column D:
=CT_LOW(A2) - Column E:
=CT_CHANGE(A2)
Expected result
| Symbol | Price | 24h High | 24h Low | Change |
|---|---|---|---|---|
| BTC | $67,432.15 | $68,100.00 | $66,800.00 | -2.34% |
| ETH | $3,456.78 | $3,290.45 | $3,150.20 | +1.25% |
| DOGE | $0.124 | $0.128 | $0.119 | +3.45% |
Multi-Currency Comparison
Compare crypto prices in different fiat currencies.
Formulas used: CT_PRICE with currency parameter
Setup
- Row 1: currency headers (
USD,EUR,GBP,JPY) - Column A: coin symbols
- Each cell:
=CT_PRICE(A2, B1)— where B1 is the currency code
Expected result
| Symbol | USD | EUR | GBP | JPY |
|---|---|---|---|---|
| BTC | $67,432 | €62,180 | £53,200 | ¥10,114,800 |
| ETH | $3,457 | €3,188 | £2,729 | ¥518,550 |
DCA Calculator
Track your dollar-cost averaging performance over time.
Formulas used: CT_PRICE
Setup
- Column A: purchase dates
- Column B: amount invested ($100 each time)
- Column C: price at purchase (manual entry or historical)
- Column D: coins bought —
=B2/C2 - Column E: current value —
=D2*CT_PRICE("BTC") - Column F: profit/loss —
=E2-B2
Expected result
| Date | Invested | Buy Price | Coins | Current Value | P/L |
|---|---|---|---|---|---|
| Jan 1 | $100 | $42,000 | 0.00238 | $160.54 | +$60.54 |
| Feb 1 | $100 | $48,000 | 0.00208 | $140.26 | +$40.26 |
| Mar 1 | $100 | $62,000 | 0.00161 | $108.57 | +$8.57 |
Price Alerts Sheet
Use conditional formatting with CoinTable formulas to create visual price alerts.
Formulas used: CT_PRICE, CT_HIGH, CT_LOW
Setup
- Column A: coin symbols
- Column B: current price —
=CT_PRICE(A2) - Column C: alert threshold (high) — manually set your target
- Column D: alert threshold (low) — manually set your floor
- Column E: status —
=IF(B2>=C2, "🔴 SELL", IF(B2<=D2, "🟢 BUY", "⚪ HOLD"))
Expected result
| Symbol | Price | Sell Above | Buy Below | Status |
|---|---|---|---|---|
| BTC | $67,432 | $70,000 | $60,000 | ⚪ HOLD |
| ETH | $3,457 | $3,500 | $3,000 | ⚪ HOLD |
| SOL | $124 | $120 | $100 | 🔴 SELL |
Add conditional formatting to color the Status column for instant visual alerts.