pjandshelly

Board Regular
Joined
Jan 25, 2017
Messages
61
I am looking to create a formula where on the top row, I have dates for each day of the week from 10/1/17 through 9/30/18. In the first Column, I have Service Areas. My data is different counts. In one data set, I am pulling just counting numbers. In another set, I am pulling a percentage calculation. For example, Calls Presented, Calls Handled, Percentage Abandonment Rate (Calls Handled/Calls Presented). I want to know Average Calls Presented, Average Calls Handled, Average Calls Abandoned for each month. I used a previous formula that I got from a previous thread where it was pulling a total number of the Sum of these values, but it didn't work for averages. This was my Sum Formula:
{=SUM(IF(ISNUMBER(MATCH($A$2:$A$33,{2200,2210,2220,2230,2240,2250,2400,2410,2420,2430,2440,2450,"B100","B120",8150},0)),IF($B$1:$BI$1-DAY($B$1:$BI$1)+1=I$44+0,$B$2:$BI$33)))}

Average Formula:
{=Average(IF(ISTEXT(MATCH($A$2:$A$33,{"CALL CENTER"},0)),IF($B$1:$NE$1-DAY($B$1:$NE$1)+1=E$66+0,$B$2:$NE$33)))}

Can someone point me to the error of my ways.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
It is a somewhat complicated formula without the underlying data to help along, but one thing I notice right off the top is you are checking ISTEXT(MATCH, however, MATCH will never return text. It will always return a number indicated a row (or series of rows in an array formula) within the defined range.

Try switching that to ISNUMBER and see if that cleans it up.
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,668
Members
449,463
Latest member
Jojomen56

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