Paste your broken SUMIFS into ChatGPT with the prompt below. It will identify the problem and give you a corrected formula.
I need a SUMIFS formula. Here's what I want: [describe in plain English, e.g. "Sum Revenue where Region is 'North', Product is 'Widget Pro', and Date is between 1 Jan 2026 and 31 Mar 2026"] My data is on sheet [name]. Column structure: - Sum range: column D (Revenue) - Criteria 1: column A (Region) - Criteria 2: column B (Product) - Criteria 3: column C (Date) Data runs from row 2 to row [last row]. Please write the SUMIFS with absolute references so I can copy it safely.
Replace the bracketed parts with your real columns, then paste the prompt into ChatGPT.
My SUMIFS is returning 0 even though there should be matches. Here's the formula: [paste formula] Here are 3 sample rows from my data: [paste rows] The expected result for these rows is [expected value]. Please tell me what's wrong and give me the corrected formula.
Paste 3 real rows — ChatGPT usually spots the issue in one pass.
I need to sum Revenue where Region is either 'North' OR 'South'. How should I structure this with SUMIFS? Revenue is column D, Region is column A, data from row 2 to 500.
ChatGPT will write two SUMIFS added together — one per OR condition.
| A | B | C | D | F | |
|---|---|---|---|---|---|
| 1 | Region | Product | Date | Revenue | Q1 total |
| 2 | North | Widget Pro | 15/01/2026 | £1,200 | No formula |
| 3 | South | Widget A | 20/01/2026 | £850 | |
| 4 | North | Widget Pro | 03/02/2026 | £2,100 | |
| 5 | East | Widget A | 18/02/2026 | £940 | |
| 6 | North | Widget Pro | 05/03/2026 | £1,800 | |
| 7 | South | Widget B | 22/03/2026 | £1,140 |
| A | B | C | D | F | |
|---|---|---|---|---|---|
| 1 | Region | Product | Date | Revenue | Q1 total |
| 2 | North | Widget Pro | 15/01/2026 | £1,200 | £5,100 |
| 3 | South | Widget A | 20/01/2026 | £850 | |
| 4 | North | Widget Pro | 03/02/2026 | £2,100 | |
| 5 | East | Widget A | 18/02/2026 | £940 | |
| 6 | North | Widget Pro | 05/03/2026 | £1,800 | |
| 7 | South | Widget B | 22/03/2026 | £1,140 |
£1,200 + £2,100 + £1,800 = £5,100 ✓ All sum/criteria ranges use rows 2:500.
| A | B | C | D | F | |
|---|---|---|---|---|---|
| 1 | Region | Product | Date | Revenue | Result |
| 2 | North | Widget Pro | '15/01/2026 | £1,200 | £0 |
| 3 | North | Widget Pro | '03/02/2026 | £2,100 | |
| 4 | North | Widget Pro | '05/03/2026 | £1,800 |
| A | B | C | D | F | |
|---|---|---|---|---|---|
| 1 | Region | Product | Date | Revenue | Result |
| 2 | North | Widget Pro | 15/01/2026 | £1,200 | £5,100 |
| 3 | North | Widget Pro | 03/02/2026 | £2,100 | |
| 4 | North | Widget Pro | 05/03/2026 | £1,800 |
Cause: Date cells were text, not real Excel dates. Fix the source dates first; the SUMIFS formula itself does not need to change. £1,200 + £2,100 + £1,800 = £5,100 ✓
| Region | Rep | Product | Revenue | North OR South? |
|---|---|---|---|---|
| North | A. Reid | Widget Pro | £1,200 | Include |
| East | D. Lane | Widget A | £940 | Exclude |
| South | B. Shaw | Widget Pro | £2,100 | Include |
| West | E. Kim | Widget B | £780 | Exclude |
| North | C. Fox | Widget Pro | £1,800 | Include |
| South | B. Shaw | Widget A | £1,140 | Include |
| Region group | Product | SUMIFS result | Combined |
|---|---|---|---|
| North only | All products | £3,000 | £6,240 ✓ |
| South only | All products | £3,240 | |
| East | Widget A | £0 (excluded) | — |
| West | Widget B | £0 (excluded) | — |
=SUMIFS($D$2:$D$500,$A$2:$A$500,"North") +SUMIFS($D$2:$D$500,$A$2:$A$500,"South") North: £1,200+£1,800 = £3,000 South: £2,100+£1,140 = £3,240 Total: £6,240 ✓
Write one sentence: "I want to sum the Revenue column where Region is North, Product is Widget Pro, and Date is between 1 Jan and 31 Mar." That sentence becomes your prompt.
Tell ChatGPT your column structure and paste a few real rows. ChatGPT can see the date format, text casing, and number format — which can help catch common problems before you build the formula.
Ask ChatGPT to use $A$2:$A$500 style references so the formula is safe to copy across rows or columns.
Verify the formula on a row where you already know the correct answer before applying it across the whole report.
Paste the broken formula and 3 sample rows into ChatGPT. It can help identify non-matching criteria, hidden spaces, text-formatted dates, or text values in the sum range.
$A:$A can be useful when the row count changes, but use whole-column references consistently for the sum range and every criteria range. They can be slower in large workbooks.#VALUE!.+: =SUMIFS(E:E,A:A,"North")+SUMIFS(E:E,A:A,"South"). In current Excel you can also use an array constant for a single compact formula: =SUM(SUMIFS(E:E,A:A,{"North","South"})). Ask ChatGPT for the OR prompt above and it will write either version for you.&: use ">="&DATE(2026,1,1) or ">="&A1. Make sure the date column contains real Excel dates — not text that looks like a date.