How can I find the average of a count of the number of calls per day?

dw123000

New Member
Joined
Jul 20, 2014
Messages
2
Hi all

I was wondering if someone could give me some help. I have to find the average number of call per day and per hour.

My Data looks like follows ( small sample - there are roughly 700 calls per day). I also have the hour the call was taken. I am using Excel 2010. I was wondering if I could use powepivot or VBA to achieve this task?

Any help would be gratefully received.

DateCall NumberWeekday
01/01/2014275670Wed
25/01/2014276720Sat
07/01/2014279821Tue
04/01/2014278362Sat
11/01/2014277745Sat
17/01/2014279412Fri
23/01/2014265566Thu
27/01/2014254014Mon
25/01/2014253053Sat
20/01/2014250233Mon
05/01/2014266707Sun
29/01/2014251576Wed




<colgroup><col><col><col></colgroup><tbody>
</tbody>

<colgroup><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi and Welcome to MrExcel,

If I'm understanding your question, you could do that with worksheet formulas. The specific formulas would depend on whether you are counting days and hours on a 24/7 Operation or less than 7 days per week/ 24 hours per day...


Excel 2013
EFG
124/7 OperationBusiness Hrs Only (8/5)
2Total Calls1212
3Total Days2921
4Avg Calls Per Day0.410.57
5Avg Calls Per Hour0.020.07
Sheet1
Cell Formulas
RangeFormula
F2=COUNTA($B$2:$B$100000)
F3=MAX($A$2:$A$100000)-MIN($A$2:$A$100000)+1
F4=F2/F3
F5=F4/24
G2=COUNTA($B$2:$B$100000)
G3=NETWORKDAYS(MIN($A$2:$A$100000),MAX($A$2:$A$100000))
G4=G2/G3
G5=G4/8



These formulas assume you would be analyzing full days of data. The formulas would be different if, for example, you wanted to know average calls per hour for data that spans 6 PM Monday to 10 AM Tuesday.
 
Upvote 0
Many thanks for your speedy response. Apologies - on reflection, I dont think I stated my requirements particularly clearly! I have a years data which I would like to analyse. I was hoping to get the results to look something as follows :

Day of week Average No of calls
Mon 600.45
Tue 587.34
Wed 903.87
Thu 507.43
Fri 703.19
Sat 803.82
Sun 818.72


Hourly averages to look as something like follows:

Hourly Average
0 - 1 25.23
1 - 2 24.12
2 - 3 25.13

....

22 - 23 19.13
23 - 00 18.07

I created a pivot table to count the number of calls per day and per hour as I have to filter by an age range as well ( Mon age 0-4, Mon age 5 - 9 .. etc), but was not able to work out how to apply an average.

Once again - many thanks for your speedy response.
 
Upvote 0
I created a pivot table to count the number of calls per day and per hour as I have to filter by an age range as well ( Mon age 0-4, Mon age 5 - 9 .. etc), but was not able to work out how to apply an average.

Could you clarify your need to filter by age ranges? The desired results you show in your last post don't show age ranges.
Are you just applying for a single age range, or needing to get the desired results you show for multiple age ranges (combined with day of week, hour of day).

I'd probably suggest approach the problem differently depending on which of those is needed.
 
Upvote 0

Forum statistics

Threads
1,215,364
Messages
6,124,507
Members
449,166
Latest member
hokjock

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