Docs

Likely adds formulas to Google Sheets and Excel that answer a question about each cell with a number you can sort on.

Install for Google Sheets

  1. Open a spreadsheet, then Extensions → Add-ons → Get add-ons, and search for Likely.
  2. Install it, then open Extensions → Likely → Open.
  3. Enter your email to get a free key, or paste a key you already have. The key is saved in that spreadsheet.

Install for Excel

  1. In Excel (web, Windows or Mac), go to Home → Add-ins and search for Likely.
  2. Add it, then click the Likely button on the Home tab to open the pane.
  3. Get a free key or paste yours. It's saved for Likely on that device.

Formulas

Google SheetsExcelReturns
=LIKELY(range, question)=LIKELY.IS(range, question)Probability from 0 to 1 that the question is true for each cell
=LIKELY_CHOICE(range, question, labels, [with_confidence])=LIKELY.CHOICE(range, question, labels, [with_confidence])The best label for each cell. With TRUE, adds a confidence column
=LIKELY_SCORE(range, question, levels)=LIKELY.SCORE(range, question, levels)A score from 0 (first level) to n−1 (last level)

labels and levels can be a range (e.g. Labels!A1:A6) or a comma-separated list ("billing, technical, sales"). Levels go from lowest to highest.

=LIKELY(A2:A500, "Is the customer asking for a refund?")
=LIKELY_CHOICE(A2:A500, "Which team should handle this?", "billing, technical, sales")
=LIKELY_SCORE(A2:A500, "How upset is the customer?", "Calm, Annoyed, Furious")

Pass a whole column range rather than filling a formula down: one formula over a range is one request, and the results spill into the cells below. In Excel, filled-down single-cell formulas also work, since Likely groups them automatically.

Bulk run

Formulas take up to 5,000 cells per range. For bigger columns, select the column and use Bulk run in the Likely panel. It writes plain values into the first empty column on the right, so nothing recalculates and there are no timeouts. Choice runs also write a confidence column.

Tools

Writing good questions

What counts as a row

Each non-empty cell judged for a question is one row. Blank cells are free. If Likely has already answered the same text for the same question, the answer comes from cache and is also free. Cells longer than 8,000 characters are judged on their first 8,000.

Limits

Rows per monthFree 2,000 · Pro 250,000 · Team 2,000,000
Cells per formula5,000 (use Bulk run for more)
Cells per bulk run200,000
Labels per choice2 to 50
Levels per scale2 to 10

Errors

API

The same engine is available over HTTP with your key:

curl https://getlikely.app/v1/judge \
  -H "X-Likely-Key: lk_…" -H "Content-Type: application/json" \
  -d '{"kind":"probability","question":"Is this a refund request?","values":["Refund me please","Love it"]}'

kind is probability (0 to 1), choice (with labels) or score (with levels). The response has one result per value, or null for empty values.