finding the highest total for a consecutive group of entries in a column - EXCEL

﹥>﹥吖頭↗ 提交于 2019-12-13 08:35:15

问题


rather then finding the highest single entry, i want the highest total for a consecutive group of n entries e.g within a column of 100 values i want to look to find 10 consecutive cells whose sum is a maximum

I say 10 as an example i wish to be able to change that easily.


回答1:


By far the cleanest way to do this is with a User Defined Function (UDF).

Here is a small routine that will do it. Place this routine in a standard code module:

Function MaxN(n&, r As Range)
    Dim i&, j&, m#, t#, v
    v = r.Value2
    For i = 1 To UBound(v)
        If UBound(v) - i + 1 >= n Then
            t = 0
            For j = i To i + n - 1
                t = t + v(j, 1)
            Next
            If t > m Then m = t
        Else
            Exit For
        End If
    Next
    MaxN = m
End Function

Then on the worksheet where you want to calculate the max, pick a cell where you'd like to have the calculation return and enter this formula:

=MaxN(10,A1:A100)

That's it.

With this UDF you can easily change the '10' to whatever you like and you can easily adjust the vertical range location and size by altering the formula.




回答2:


With data in A1 through A100, in B10 enter:

=SUM(A1:A10)

and copy down through B100

Then in another cell, use:

=MAX(B:B)



回答3:


Array formula version (should be confirmed with Ctrl+Shift+Enter)

=MAX(A1:A100+A2:A101+A3:A102+A4:A103+A5:A104+A6:A105+A7:A106+A8:A107+A9:A108+A10:A109)

(probably not the easiest one to maintain in future).



来源:https://stackoverflow.com/questions/32635438/finding-the-highest-total-for-a-consecutive-group-of-entries-in-a-column-excel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!