ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   sum of top 16 numbers (https://www.excelbanter.com/excel-discussion-misc-queries/82973-sum-top-16-numbers.html)

Barb

sum of top 16 numbers
 
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),???

Bob Phillips

sum of top 16 numbers
 
=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)

"Barb" wrote in message
...
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),???




Chip Pearson

sum of top 16 numbers
 
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


"Bob Phillips" wrote in
message ...
=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)

"Barb" wrote in message
...
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),???






Barb

sum of top 16 numbers
 
That works great, but when I copy it down to the next row, I get an #num!
error.

"Bob Phillips" wrote:

=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)

"Barb" wrote in message
...
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),???





Bob Phillips

sum of top 16 numbers
 
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)

"Barb" wrote in message
...
That works great, but when I copy it down to the next row, I get an #num!
error.

"Bob Phillips" wrote:

=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)

"Barb" wrote in message
...
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),???







Barb

sum of top 16 numbers
 
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

"Chip Pearson" wrote:

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


"Bob Phillips" wrote in
message ...
=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)

"Barb" wrote in message
...
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),???







vane0326

sum of top 16 numbers
 

Does this helps*?*


=SUM(LARGE($F6:$Z6,{1,2,3,4,5,6,7,8,9,10,11,12,13, 14,15,16}))


--
vane0326
------------------------------------------------------------------------
vane0326's Profile: http://www.excelforum.com/member.php...o&userid=14731
View this thread: http://www.excelforum.com/showthread...hreadid=532447


Bob Phillips

sum of top 16 numbers
 
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)

"Barb" wrote in message
...
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

"Chip Pearson" wrote:

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


"Bob Phillips" wrote in
message ...
=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)

"Barb" wrote in message
...
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),???









All times are GMT +1. The time now is 11:57 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com