Calculate transactions per second

gorchr

New Member
Joined
Sep 21, 2005
Messages
8
I have a ordered column with the times that messages were sent. I need to count the number of times the time is the same (to get transactions per second).

example:
3:53:22
3:53:22
5:41:45
5:41:45
5:43:45
5:43:45
6:00:34
6:00:34
6:04:23
6:04:23
6:04:23
6:04:23
6:04:24
6:04:24
6:04:24
6:04:24
 

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
Could you possibly explain what you expect for results? Are you wanting to average together all the individual times to see an overall average?

Based on how I calculated it I got an average of 2.67 transactions per second?

Is your data set much larger than this example?
 
Upvote 0
For each time, I need the number of transactions that took place. There were 2 transactions for the first time, 4 transactions for the second time, 2 transactions for the third time, etc. I am looking for the count instead of the average. The example below is a sample of over 6000 entries. Ultimately, I want to create a line graph that displays two lines that compares the tps between 2 different days. The time would represent the x axis and the count would represent the y axis.
 
Upvote 0
Can you use advance filter to pull out the unique times and then use a countif formula:

=countif(A:A,B1)

Where column A has the times and B1 contains the time you are wanting a count of?
 
Upvote 0
Book1
ABCDE
1TimesTimes
23:53:223:53:222
33:53:225:41:452
45:41:455:43:452
55:41:456:00:342
65:43:456:04:234
75:43:456:04:244
86:00:34
96:00:34
106:04:23
116:04:23
126:04:23
136:04:23
146:04:24
156:04:24
166:04:24
176:04:24
Sheet1
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,426
Members
448,961
Latest member
nzskater

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