Index and Match Help needed

mistahmistah

New Member
Joined
May 8, 2014
Messages
21
Hello,

I am trying to put together a yearly calculator, and would like a formula to calculate my total from year beginning to year end. Below is a small sample of data. I'd like each group to show a total number when queried against the year column since I need to calculate total ACD Calls accepted from Jan. 1 - current. This will be done in a separate worksheet from my raw data. I will then use this formula to calculate off the month column, but I can figure that out once I get the year formula. Let me know if more information is needed.

YearMonthDayDateGroupACD Calls Accepted
201512Friday, January 02, 2015Customer Service 835
201512Friday, January 02, 2015Cutomer Care General 132
201512Friday, January 02, 2015Emergency Technical Support 799
201512Friday, January 02, 2015Technical Support 769

<colgroup><col span="3"><col><col><col></colgroup><tbody>
</tbody>

Please help!
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
It seems like a SUMIF is what you're after. On your new sheet you could use this code (assuming your Column A is Years and proceeding onwards):

Code:
=SUMIF(Sheet1!A:A,"2015",Sheet1!F:F)

You could even do a SUMIFS if you want to count up by Year, Month, and Group:

Code:
=SUMIFS(Sheet1!F:F,Sheet1!E:E,"Customer Service",Sheet1!A:A,2015,Sheet1!B:B,1)
 
Upvote 0

Forum statistics

Threads
1,215,161
Messages
6,123,377
Members
449,097
Latest member
Jabe

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