Time analysis - Counting time (hours) - counting each time stamp

st471438

New Member
Joined
Jun 4, 2010
Messages
23
Good morning everyone,

I am back to this amazing forum that has given a LOT to excel community and thank you everyone for that :)

So I have this spreadsheet where it is basically call center data so in one of the column it shows time of inbound call as example (21:12:05) and other columns shows specific notes about that call example if product was sold on that call or not. So I am trying to find trend that during what period of time in a day maximum product was sold. Example I want to set some criteria that from 8 am to 10 am, 10 am to 1 pm and so on and then to find how many products are sold. So what I am looking is how can i extract hours as numbers only? from time stamp? I tried using =RIGHT(a1,2) but its not working and it messing with the number format.

What is the easy way to accomplish this?

I thank you once again in advance.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Good morning everyone,

I am back to this amazing forum that has given a LOT to excel community and thank you everyone for that :)

So I have this spreadsheet where it is basically call center data so in one of the column it shows time of inbound call as example (21:12:05) and other columns shows specific notes about that call example if product was sold on that call or not. So I am trying to find trend that during what period of time in a day maximum product was sold. Example I want to set some criteria that from 8 am to 10 am, 10 am to 1 pm and so on and then to find how many products are sold. So what I am looking is how can i extract hours as numbers only? from time stamp? I tried using =RIGHT(a1,2) but its not working and it messing with the number format.

What is the easy way to accomplish this?

I thank you once again in advance.
The HOUR( ) function will return the hour number.

A2 = 21:12:05

=HOUR(A2)

Returns the integer 21.

Note that 12:00 AM is hour 0.
 
Upvote 0
Awesome thank you so much. Now I have another problem.

Hours are in one column and in another column it says "sale" and many other values but I want to count "sale" during the certain group of hours.

So let's say how many time sale comes during hours 12 to 14, 18 to 20 etc. Does this make sense?
 
Upvote 0
Awesome thank you so much. Now I have another problem.

Hours are in one column and in another column it says "sale" and many other values but I want to count "sale" during the certain group of hours.

So let's say how many time sale comes during hours 12 to 14, 18 to 20 etc. Does this make sense?
Sure, we can do that.

What version of Excel are you using?
 
Upvote 0
hi biff, st471439,

i also have the same question on this thread, however, there is a quite little difference.

I am also looking for data to be counted on a certain time interval. Say first column has time stamps of employee went on break, coaching, or lunch. By the way, it's a callcanter data too. Second column has the activity of people went on break, lunch, or coaching. And third, is the department where they belong, say AOL, and NortonLive.

I used this formula =COUNTIFS(PST,">="&$M3,PST,"<"&$N3,sheetqueue,"="&$E$1,act,"="&$E$11), with the pre-defined range name, of same range size to make it uniform, but i only get 0 value.

thanks for your help.
 
Upvote 0

Forum statistics

Threads
1,215,216
Messages
6,123,669
Members
449,114
Latest member
aides

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