Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Averaging time in hh:mm format

I am trying to average 'call handle time' for a week.

1) I use VLOOKUP to pull the data from a daily report
2) I have applied a format of [h]:mm:ss

The cells look like this -- it's throwing a #DIV/0! error. Any ideas?
D6 E6 F6 G6 H6
00:05:10 00:04:17 00:04:50 00:05:21 00:05:10 #DIV/0!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Averaging time in hh:mm format

What is your formula?

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Ryan" wrote in message ups.com...
|I am trying to average 'call handle time' for a week.
|
| 1) I use VLOOKUP to pull the data from a daily report
| 2) I have applied a format of [h]:mm:ss
|
| The cells look like this -- it's throwing a #DIV/0! error. Any ideas?
| D6 E6 F6 G6 H6
| 00:05:10 00:04:17 00:04:50 00:05:21 00:05:10 #DIV/0!
|


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Averaging time in hh:mm format

If you're getting #Div/0 as a result of a formula like:
=average(a1:e1)
then a1:e1 doesn't contain any numbers
(and dates/times are just numbers nicely formatted to excel)

If you still have the =vlookup() formulas in those 5 cells, then I'd go back to
the original data and convert those text times to real times. (They're strings
masquerading as numbers.)

Maybe this will help:
Select the range to fix
edit|Replace
what: : (a colon)
with: : (that same colon)
replace all

If there's nothing else in that cell (like those HTML non-breaking spaces), then
you may see your formula evaluate to a real number.

In general, you may want to use a formula like this:
=if(count(a1:e1)=0,"No Numbers",average(a1:e1))



Ryan wrote:

I am trying to average 'call handle time' for a week.

1) I use VLOOKUP to pull the data from a daily report
2) I have applied a format of [h]:mm:ss

The cells look like this -- it's throwing a #DIV/0! error. Any ideas?
D6 E6 F6 G6 H6
00:05:10 00:04:17 00:04:50 00:05:21 00:05:10 #DIV/0!


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Averaging Time PeterM Excel Discussion (Misc queries) 4 January 29th 07 02:16 PM
Averaging Time withing Excel Fred Smith Excel Worksheet Functions 2 July 22nd 06 08:08 AM
Averaging Time Difference vldavis809 Excel Discussion (Misc queries) 1 July 8th 06 09:42 AM
Need help with averaging a time but dates are messing up the result I am trying for. chadsxe Excel Worksheet Functions 6 June 15th 06 06:39 PM
Averaging time katgolightly Excel Worksheet Functions 5 December 28th 04 10:02 PM


All times are GMT +1. The time now is 04:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"