Skip to content
Panshi
EN / /
← Services

🧮 Excel Formula

Describe what you want to calculate in plain language. Get the exact Excel / Google Sheets formula, an explanation, and which cell references to change.

See the quality — a real example

Sample only · no credits used

Input — describe it in plain English

"Sum the amounts in column D, but only for rows where the Status in column A is 'Paid' and the invoice date in column B falls in the current month."

Target app: Excel

Output — ready-to-paste formula

=SUMIFS(D:D, A:A, "Paid", B:B, ">="&EOMONTH(TODAY(),-1)+1, B:B, "<="&EOMONTH(TODAY(),0))

How it works: SUMIFS adds column D where two conditions hold — A equals "Paid", and B is between the first and last day of this month (EOMONTH finds those boundaries off TODAY(), so it auto-rolls each month). Change D:D, A:A, B:B to your real columns.

Alternative: on Google Sheets, QUERY() can do the same with a SQL-style filter — we include it when it's the cleaner fit.

Related tools

Token Calculator

Count tokens (o200k / GPT-4o) and compare input/output cost across GPT, Claude, Gemini, DeepSeek & Qwen — runs in your browser.

API Key Leak Scanner

Paste code or config and instantly find hardcoded secrets — OpenAI/AWS/GitHub/Stripe/Google keys, private keys, JWTs. 100% in-browser.

Text to SQL

Turn plain English into correct SQL for Postgres, MySQL, SQLite, BigQuery or Snowflake — schema-aware.

Code Review

Paste a diff or file and get a ranked review — bugs, logic, security, performance — with fixes.