Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default calculating average handling time

Hi i have a excel sheet of people with their average handling time like

ray 00:38:42
james 01:08:57
tommy 00:51:29
jin 00:33:38
tim 01:28:57


now i want to grade them like
people with <= 00:45:00 grade 5
people with <=00:50:00 grade 4
people with <=00:55:00 grade 3
people with <=1:00:00 grade 2
people with =1:01:00 grade 1

how do i use the formula in this

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default calculating average handling time

Hi,

Am Sun, 15 Dec 2013 10:45:16 -0800 (PST) schrieb nitesh katoch:

ray 00:38:42
james 01:08:57
tommy 00:51:29
jin 00:33:38
tim 01:28:57

now i want to grade them like
people with <= 00:45:00 grade 5
people with <=00:50:00 grade 4
people with <=00:55:00 grade 3
people with <=1:00:00 grade 2
people with =1:01:00 grade 1


make a helper table:

+----------+-----+
| G | H |
+----------+-----+
| 00:00:00 | 5 |
+----------+-----+
| 00:45:00 | 4 |
+----------+-----+
| 00:50:00 | 3 |
+----------+-----+
| 00:55:00 | 2 |
+----------+-----+
| 01:00:00 | 1 |
+----------+-----+

Then use in C1:
=VLOOKUP(B1,$G$1:$H$5,2,1)


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default calculating average handling time

On Monday, December 16, 2013 12:15:16 AM UTC+5:30, nitesh katoch wrote:
Hi i have a excel sheet of people with their average handling time like



ray 00:38:42

james 01:08:57

tommy 00:51:29

jin 00:33:38

tim 01:28:57





now i want to grade them like

people with <= 00:45:00 grade 5

people with <=00:50:00 grade 4

people with <=00:55:00 grade 3

people with <=1:00:00 grade 2

people with =1:01:00 grade 1



how do i use the formula in this
data does not have any fixed data , it is not working

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default calculating average handling time

Hi,

Am Sun, 15 Dec 2013 11:16:40 -0800 (PST) schrieb nitesh katoch:

data does not have any fixed data , it is not working


you didn't try it!


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default calculating average handling time

i did

00:15:22
00:38:42
01:08:57
00:51:29
00:33:38
01:28:57
01:11:29
01:15:29
01:05:34
00:48:30
01:02:15
01:21:58
01:07:20
00:51:52
00:56:41
01:07:41
01:08:41
01:17:50
00:57:06
01:00:28
00:46:50
01:11:00
00:53:56
00:54:19
01:14:45
00:59:12
01:03:49
00:53:48
01:23:16
00:47:29
00:59:08
01:15:23
01:09:41
01:05:43
01:09:55


these are the AHT for people now i am not able to grade them in excel


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default calculating average handling time

Hi,

Am Sun, 15 Dec 2013 11:37:03 -0800 (PST) schrieb nitesh katoch:

these are the AHT for people now i am not able to grade them in excel


have a look:
https://skydrive.live.com/#cid=9378A...121822A3%21326
for the workbook "Times"


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 168
Default calculating average handling time

On Sunday, December 15, 2013 11:49:37 AM UTC-8, Claus Busch wrote:
Hi,



Am Sun, 15 Dec 2013 11:37:03 -0800 (PST) schrieb nitesh katoch:



these are the AHT for people now i am not able to grade them in excel




have a look:

https://skydrive.live.com/#cid=9378A...121822A3%21326

for the workbook "Times"





Regards

Claus B.

--

Win XP PRof SP2 / Vista Ultimate SP2

Office 2003 SP2 /2007 Ultimate SP2




Hi Claus,
Shouldn't the column_Index column be like this?


0:00:00
0:45:01
0:50:01
0:55:01
1:00:01


Howard
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default calculating average handling time

Hi Howard,

Am Sun, 15 Dec 2013 17:10:01 -0800 (PST) schrieb :

0:00:00
0:45:01
0:50:01
0:55:01
1:00:01


thank you for correction


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2
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
Help with calculating time and a half - I've got straight time and double time. Paxton31 Excel Discussion (Misc queries) 4 August 5th 13 08:26 PM
Average Time Not Calculating JPP Excel Worksheet Functions 15 June 12th 12 01:17 PM
Handling hhmmss time format Deepak Tulsani Excel Programming 6 February 15th 12 03:28 AM
Calculating Average Time Eán[_2_] Excel Worksheet Functions 3 March 2nd 09 04:18 PM
Error Handling #N/A with AVERAGE Function - Average of values in Row Sam via OfficeKB.com Excel Worksheet Functions 13 July 31st 05 03:59 PM


All times are GMT +1. The time now is 05:50 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"