SUMIFS function has suddenly stopped working in one cell

tomplum

New Member
Joined
Nov 23, 2016
Messages
4
Please help if you can...

I setup a spreadsheet for reports last year that contains quite a few SUMIFS calculations.

I have several tabs on the spreadsheet that each have these calculations and the majority all work fine.

However, in every tab I have one of these SUMIFS calculations in cell L27. This calculation is now returning no results at all.

The formula I'm using is =SUMIFS(G:G,D:D,"Mural")

Any thoughts on how to fix will be greatly appreciated.
 
Does the following work?...

=SUMIFS(G:G,D:D,"*Mural*")

I believe Aladin is onto the right idea with using the wildcard character "*Mural*" in the formula, but the formula still needs to be
=SUMIF(D:D,"*Mural*",G:G) (with the criteria in the center of the column designations). I've tested this and it works perfectly, even if the word "mural" is all lowercase. I'm guessing your sheet has a leading or trailing space where "mural" is listed that the wildcard character will take care of.

Hi

Structure of your sumif formula is wrong

Sumif(Range, Criteria, SumRange)

always use "=Text" while not referring a cell

=SUMIFS(G:G,D:D,"*Mural*")

=SUMIF(D:D,"*Mural*",G:G)

are exactly equivalent in behavior. The latter can be considered obsolete (also COUNTIF and AVERAGEIF).
 
Upvote 0

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Aladin,

After seeing your post directly above, I re-tried the formula you gave, and see that it does indeed work the same. I was not aware that the SUMIFS formula had outdated SUMIF as you described... I thought SUMIFS was only used where more than one criteria was desired. Thanks for the education!
 
Upvote 0
Aladin,

After seeing your post directly above, I re-tried the formula you gave, and see that it does indeed work the same. I was not aware that the SUMIFS formula had outdated SUMIF as you described... I thought SUMIFS was only used where more than one criteria was desired. Thanks for the education!

Qualification "obsolete" is rather a personal opinion:

COUNT, COUNTA: 0 arg; COUNTIF:1 arg; COUNTIFS: >=1 arg(s)
SUM: 0 arg; SUMIF: 1 arg; SUMIFS: >= 1 arg(s)
AVERAGE: 0 arg; AVERAGEIF: 1 arg; AVERAGEIFS: >=1 arg(s)
MAX: 0 arg; no MAXIF: 1 arg; MAXIFS: >= 1 arg(s)
MIN: 0 arg; no MINIF: 1 arg; MINIFS: >= 1 arg(s)

>= 1 arg(s) motivates my reason regarding just 1 arg versions.
 
Upvote 0

Forum statistics

Threads
1,214,849
Messages
6,121,925
Members
449,056
Latest member
denissimo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top