nc_waggoner
New Member
- Joined
- Sep 2, 2016
- Messages
- 21
I have a sheet with a counter in column D and associated times in column E as numerical milliseconds (ex. 72996 or 72.9 seconds). I am trying to figure out a way to sum the values above a certain limit (900,000) on all rows with a time with the exception of the last row which always provides bad data (due to the program). In the example below, I need to sum blocks 2 and 9 since they are above 900,000 but NOT block 12 since it is the last row. Please help!
[TABLE="width: 200"]
<tbody>[TR]
[TD="align: center"]Number[/TD]
[TD="align: center"]Time[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]100001[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD="align: center"]1200000[/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD="align: center"]86989[/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD="align: center"]86007[/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD="align: center"]103011[/TD]
[/TR]
[TR]
[TD="align: center"]6[/TD]
[TD="align: center"]72996[/TD]
[/TR]
[TR]
[TD="align: center"]7[/TD]
[TD="align: center"]101014[/TD]
[/TR]
[TR]
[TD="align: center"]8[/TD]
[TD="align: center"]91998[/TD]
[/TR]
[TR]
[TD="align: center"]9[/TD]
[TD="align: center"]1400000[/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD="align: center"]127005[/TD]
[/TR]
[TR]
[TD="align: center"]11[/TD]
[TD="align: center"]73994[/TD]
[/TR]
[TR]
[TD="align: center"]12[/TD]
[TD="align: center"]2000000000[/TD]
[/TR]
</tbody><colgroup><col><col></colgroup>[/TABLE]
[TABLE="width: 200"]
<tbody>[TR]
[TD="align: center"]Number[/TD]
[TD="align: center"]Time[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]100001[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD="align: center"]1200000[/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD="align: center"]86989[/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD="align: center"]86007[/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD="align: center"]103011[/TD]
[/TR]
[TR]
[TD="align: center"]6[/TD]
[TD="align: center"]72996[/TD]
[/TR]
[TR]
[TD="align: center"]7[/TD]
[TD="align: center"]101014[/TD]
[/TR]
[TR]
[TD="align: center"]8[/TD]
[TD="align: center"]91998[/TD]
[/TR]
[TR]
[TD="align: center"]9[/TD]
[TD="align: center"]1400000[/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD="align: center"]127005[/TD]
[/TR]
[TR]
[TD="align: center"]11[/TD]
[TD="align: center"]73994[/TD]
[/TR]
[TR]
[TD="align: center"]12[/TD]
[TD="align: center"]2000000000[/TD]
[/TR]
</tbody><colgroup><col><col></colgroup>[/TABLE]