Why is sumifs function not working
Tutor 5 (58 Reviews)
Excel Tutor
Still stuck with a Excel question
Ask this expertAnswer
The SUMIFS function adds values that meet multiple criteria. The function uses a structured argument order and returns a zero result when the criteria fail or when the ranges do not match.
\text{SUMIFS} = \sum (\text{sum\_range where each criteria range meets its condition})
Why is SUMIFS not working?
The SUMIFS function stops working due to structural range mismatch, incorrect criteria formatting, hidden characters, data type conflicts, or volatile cell behavior.
1. Mismatched Range Sizes
SUMIFS fails because the sum_range and criteria_range sizes differ.
Excel requires identical row and column counts for all ranges.
Example structure that fails:
-
sum_range = A2:A50 (49 rows)
-
criteria_range = B2:B100 (99 rows)
Fix:
-
Select each range.
-
Confirm matching dimensions in the Name Box.
-
Correct any discrepancy by adjusting the range boundaries.
2. Text Values Stored as Numbers
SUMIFS returns zero when numbers are stored as text because Excel does not treat “45” (text) as 45 (number).
Fix:
-
Select the problematic column.
-
Use Data > Text to Columns > Finish to standardize numeric formatting.
-
Confirm numbers align to the right.
3. Extra Spaces or Invisible Characters
SUMIFS ignores values with non-printable characters because “Apple” and “Apple␣” are not equal.
Fix:
-
Create a helper column with
TRIM()andCLEAN(). -
Replace original values using Copy > Paste Special > Values.
4. Wrong Criteria Formatting
SUMIFS rejects improperly formatted criteria.
Incorrect example:
“>50” entered as >50 without quotes.
Correct form:\text{"{>}50"}
Fix:
-
Enclose all logical operators inside quotes.
-
Confirm the criteria type matches the data type.
5. Using Wildcards Incorrectly
SUMIFS misinterprets wildcards when symbols like * or? appear as literal characters.
Fix:
-
Escape wildcards with
~when searching for the actual symbol. -
Confirm the intended match pattern.
6. Date Criteria Entered Incorrectly
SUMIFS reads dates as serial numbers. Incorrect formatting breaks the formula.
Correct structure:\text{"}>" \& \text{DATE(2024,1,1)}
Fix:
-
Use
DATE()instead of typing the date manually. -
Confirm cells use proper date formatting.
7. Mixed Data Types in Date or Number Columns
SUMIFS returns zero because date columns mix numbers and text, and number columns mix numeric values and formatted text.
Fix:
-
Convert all dates with Text to Columns.
-
Convert all numeric fields using VALUE or paste-special conversion.
8. Calculation Mode Set to Manual
SUMIFS appears broken when Excel’s calculation mode is set to manual.
Fix:
-
Go to Formulas > Calculation Options.
-
Set calculation mode to Automatic.
9. Corrupted Cell or Workbook Formatting
SUMIFS may produce unpredictable results due to workbook corruption, excessive conditional formatting, or volatile formulas.
Fix:
-
Copy data into a clean worksheet.
-
Rebuild the formula cleanly.
-
Remove unnecessary formatting.
10. Using SUMIFS With Filtered Data
SUMIFS ignores filters because the function sums all visible and hidden rows.
Fix:
-
Use SUBTOTAL or AGGREGATE for filter-sensitive calculations.
-
Use SUMPRODUCT with SUBTOTAL codes when required.
Windows vs. Mac Differences
-
The SUMIFS function syntax is identical on Windows and Mac.
-
Shortcut availability differs only in navigation, not formula execution.
-
Ribbon locations stay consistent across both platforms.
How to Fix SUMIFS Step-by-Step
-
Verify every range has an identical size.
-
Examine data types for consistency.
-
Remove extra spaces and convert text numbers.
-
Rebuild criteria with correct quotation format.
-
Switch to Automatic calculation mode.
-
Test the formula in a new worksheet.
-
Re-check wildcard and date criteria.
When to Use a Formula Example
The correct SUMIFS structure follows this format:\text{=SUMIFS(sum\_range, criteria\_range\_1, criteria\_1, criteria\_range\_2, criteria\_2, ...)}
The formula is necessary when constructing or troubleshooting SUMIFS logic.
. Was this Helpful?Get Online Tutoring or Questions answered by Experts.
You can post a question for a tutor or set up a tutoring session
Answers · 1
How to merge excel files into one file
Answers · 1
How to merge excel files into one
Answers · 1
How to mail merge from excel to email
Answers · 1
How to mail merge from excel to pdf
Answers · 1