AI-Powered CSV and Excel files Analytics
Upload a CSV or Excel file and ask it questions in plain English. Dataki loads each sheet as a table, answers with SQL and a chart, and keeps what matters as a dashboard.
Connects directly Upload; each sheet becomes a table.
dataki.ai / csv-excel
What were total sales by month in this file, and which month grew fastest?
Querying sales.xlsx · 3 sheets…
The answer is still there tomorrow.
Ask in plain language. Dataki writes the SQL, runs it against your warehouse and draws the chart. Anything worth keeping becomes a dashboard with a link — not a message that scrolls away.
app.dataki.ai / chat
Which channels actually brought in revenue last quarter?
Queried bigquery · payments · 1.2 GB scanned
SELECT channel,
SUM(amount) AS revenue
FROM payments
WHERE created_at >= DATE_TRUNC(CURRENT_DATE(), QUARTER)
GROUP BY channel
ORDER BY revenue DESC Revenue by channel
Q3 · 5 rows
- Organic search
- $412,900
- Partner referral
- $268,400
- $151,200
- Paid social
- $96,700
- Direct
- $61,300
One click later, that chart is a dashboard of its own:
app.dataki.ai/d/revenue-by-channel
Live, not a screenshot. It re-runs the query on a schedule, so the number your team reads on Friday is Friday's number.
- Share the link with anyone. Viewers are free on every plan.
- Edit the SQL by hand whenever the model gets the logic almost right.
- Drop the same dashboard into your own product with one line of HTML.
Using Dataki with CSV and Excel files
- Can I ask questions about a CSV or Excel file in plain English?
- Yes. Upload the file to Dataki and it loads each sheet as a table, turns a plain-English question into SQL, runs it and returns a chart. The generated query is shown with every result, so you can verify or edit it.
- Does Dataki keep the data from an uploaded file up to date?
- No. An uploaded file is a snapshot: Dataki answers from the copy you uploaded. For data that changes, connect the source it comes from, or keep it in a Google Sheet, which Dataki reads live.
- Can an AI assistant like Claude or Cursor query a file I uploaded?
- Yes. Dataki's MCP server lets any Model Context Protocol client query the sources you have in Dataki, uploaded files included. The assistant gets results back, never the file itself.