Trouble with SUMIFS. Please help!

mrsbez

New Member
Joined
Mar 2, 2011
Messages
2
Hi. I'm new here, and I'm wondering if anyone can help me. I have tried several SUMIFS, and nothing is working for me. I am trying to get the sum (from another worksheet, named Jan) for column J (which is made up of all numbers), but ONLY when ALL 3 of the following criteria are met: Column D says Domestic; E says Chargeback, G says Visa.

Here is one of the formulas I have tried:
=SUMIFS((Jan!J4:J50),(Jan!D4:D50="Domestic"),(Jan!E4:E50="Chargeback"),(Jan!G4:G50="Visa"))

Any suggestions, Please, Please!?!?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try

=SUMIFS(Jan!D4:D50,"Domestic",Jan!E4:E50,"Chargeback",Jan!G4:G50,"Visa")
 
Upvote 0
Hi,

Welcome to the board!
Try this:

=SUMIFS(Jan!J4:J50,Jan!D4:D50,"Domestic",Jan!E4:E50,"Chargeback",Jan!G4:G50,"Visa")

Hope this helps.
 
Upvote 0
Thank you VaraK and VoG. But those didn't work either. Although they are formulas I had already tried, I tried them again, cut/paste exactly what you guys had for me...no go!

For =SUMIFS(Jan!D4:D50,"Domestic",Jan!E4:E50,"Chargeback",Jan!G4:G50,"Visa") I get "The formula you typed contains an error."

For =SUMIFS(Jan!J4:J50,Jan!D4:D50,"Domestic",Jan!E4:E50,"Chargeback",Jan!G4:G50,"Visa") I get "You've entered too few arguments for this function."

I do have drop menus in some of the columns (for example; D has a drop menu to delect from Domestic or international) Do you think that the drop menus would be the downfall of the formulas I try? I'm so frustrated! :confused: Thanks for your suggestions.
 
Last edited:
Upvote 0
Hello, try

Code:
=SUMIFS(Jan!J4:J50,Jan!D4:D50,"Domestic",Jan!E4:E50,"Chargeback",Jan!G4:G50,"Visa")
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,275
Members
452,902
Latest member
Knuddeluff

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