how to bunch up multiple seconds to find an average/min/max per minute?

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
sorry should of been more clear.

I am only interested in the HR (bpm) column (column 2) with respects to the avg/min/max

i want to sum up all the values within each minute and output the min/max/avg for each minute
 
Upvote 0
1. HR (bpm) is in Column C. since last row is 2361

=AVERAGE(C2:C2361)
=MIN(C2:C2361)
=MAX(C2:C2361)

2.
min/max/avg for each minute
=AVERAGE(C2:L2)
=MIN(C2:L2)
=MAX(C2:L2)
 
Upvote 0
i need the min/max & avg of the sum of each hr (bpm) (Column C) ie.

time min avg max
11:01 130 160 180
11:02 135 165 185
11:03 .........................
 
Upvote 0
Table 1: Setup up | Table 2: Answer | Table 3: Formulae

I downloaded your spreadsheet and Time is in A1. I copy and pasted column A into column Q, and then I removed duplicate values via the data menu on the excel ribbon. The minutes I had left were from 11:19 to 11:58 (one of each). 11:19 is in Q2, and so on.

I used AverageIF to get the averages for each minute, but I had to use array formulas (CTRL+SHIFT+ENTER after you type the formula) to get the min and max. Please see table 3 for those formulae.

In the formulae: Column A = All 2360 time measurements | Column Q = where I removed duplicate values | Column B = HR (bpm) | The squiggly lines are the array formula

AB
1TimeHR (bpm)
211:19143
6211:20162

<tbody>
</tbody>

TimeAvgMinMax
11:19144.12140.00165.00
11:20158.53151.00166.00

<tbody>
</tbody>

AvgMinMax
AVERAGEIF(A:A,Q2,B:B){=MIN(IF(A:A=Q2,B:B))}{=MAX(IF(A:A=Q2,B:B))}
AVERAGEIF(A:A,Q3,B:B){=MIN(IF(A:A=Q3,B:B))}{=MAX(IF(A:A=Q3,B:B))}

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,207,260
Messages
6,077,351
Members
446,279
Latest member
hoangquan2310

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