Sum Function

T

TomD

I have a 32 Row (variable)10 column worksheet, each row
cell containing a number. The columns represent months
and the number is inserted monthly. What I want to do is
to add the highest 6 numbers out of the 10 on a rolling
basis. I can't get my brain round this one !! Can antone
help??

Tks

Tom
 
T

Tom Ogilvy

Something like:
=Sum(Large(A2:Q2,{1,2,3,4,5,6}))

This assumes you want the sum by row. Not sure where your numbers are, so
adjust the range argument.
 
B

Bob Phillips

Tom,

This formula gives you the 6 largest in A1:J1

=SUM(LARGE(A1:J1,{1,2,3,4,5,6}))

It's an array formula, so enter with Ctrl-Shift-Enter

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
T

TomD

Gents,

To all who replied, many thanks for prompt response.
Simple really, brain re-engaged. Thanks a lot.

Tom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top