SumIf Formula Snafu

kellywy

Board Regular
Joined
Aug 5, 2006
Messages
123
Hi all --

This is sort of an update on a previous problem, because the formula that I had worked out with your help has gone wonky on me. !? What I need is to figure out where I've screwed it up.

The calculation I need:
- Total the sales figures in K18:K250 - based on 2 parameters:
- #1 : The month they took place, and (Dates are in H18:H250)
- #2 : The Sales Agent who made the sale. (Sales Agent initials are in I18:I250)

I have my calculating dates (1st of the month in AE3; last day of the month in AF3).

The formula I currently have is this (given the Sales Agent initials as "EL"):

=SUMIFS($K$18:$K$250,$H$18:$H$250,">="&$AE3,$H$18:$H$250,"<"&EDATE($AF3,1),$I18:$I250,"EL")

For some reason, it's calculating double the sales figures.
So, while EL has actually sold $59,319 in September 2017 - the total it shows for my formula is $91,838. ?

Anyone have any suggestions on where I confabulated my formula? :-\

Appreciate any help in advance.......(and I mean you, Ford!) haha!

Kelly
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Kind of a guess here, but if AF3 is the last day of the month then EDATE($AF3,1) would return the last day in the following month which would give you sales for a 2 month period instead of 1 month. Hard to say though not knowing what dates you have in AE3 & AF3.
 
Upvote 0
Ooooohhhhhh! I wondered if that might have something to do with it. Although I had tried eliminating the 1 previously, and was still having calc problems. ****. Which I still am, I see.

AE3 is September 1, 2017 - AF 3 is September 30, 2017.
So.....can you tell me how would I fix that?

Kelly
 
Upvote 0
Try one of these:

SUMIFS($K$18:$K$250,$H$18:$H$250,">="&$AE3,$H$18:$H$250,"<="&EDATE($AE3,1),$I18:$I250,"EL")

or

SUMIFS($K$18:$K$250,$H$18:$H$250,">="&$AE3,$H$18:$H$250,"<="&$AF3,$I18:$I250,"EL")

<colgroup><col width="732"></colgroup><tbody>
</tbody>





<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Got it! Thank you so much! (I figured it out just before your reply - ha! maybe that means I'm learning something....) Appreciate your help! I've been stymied on this for a few days.
 
Upvote 0
You're welcome. Glad you got it figured out. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,500
Members
449,090
Latest member
RandomExceller01

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