Forum Discussion
Anonymous
May 07, 2019adding up cells
I have a column of 6 cells that I want to sum up the top 4 in value. How can this be done?
Twifoo
May 07, 2019Silver Contributor
If the cells you want to sum are in A2:A7, you may use this formula to get the sum of the top 4:
=SUMPRODUCT(LARGE(A2:A7,ROW(1:4)))
=SUMPRODUCT(LARGE(A2:A7,ROW(1:4)))