sum of top 16 numbers

G

Guest

I'm trying to total only the top 16 scores in a row. I have 1 cell that
'counts' the number of entries and would like to use that as part of this
formula.

As the events continue, this number will change accordingly.

Something like???
if e6<=16,sum(f6:z6),???
 
B

Bob Phillips

=SUM(LARGE(F6:Z6,ROW(1:16)))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
C

Chip Pearson

In case a row might be inserted within the first 16 rows, it
would be safer to use
=SUM(LARGE(F6:Z6,ROW(INDIRECT("1:16"))))


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
B

Bob Phillips

Barb,

Use this version then in that case

=SUM(LARGE(F6:Z6,ROW(INDIRECT("1:16"))))

still array entered.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
G

Guest

This isn't working...

I have many rows. There are many columns. I'm trying to total only the top
16 scores in a row... not column.

for example:
sum sum
of all of top # of
name scores 16 scores scores Event 1 E2 E3 ..... E20
john doe 151 ??? 16 12 14 12
12
jim jones 145 ??? 15 11 12 11
14
 
B

Bob Phillips

We know that, and it does work. It would help if you explained exactly what
you did and the result you got.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 

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