Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Barb
 
Posts: n/a
Default 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),???
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default 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),???



  #3   Report Post  
Posted to microsoft.public.excel.misc
Chip Pearson
 
Posts: n/a
Default 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),???





  #4   Report Post  
Posted to microsoft.public.excel.misc
Barb
 
Posts: n/a
Default 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),???




  #5   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default 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),???








  #6   Report Post  
Posted to microsoft.public.excel.misc
Barb
 
Posts: n/a
Default 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),???






  #7   Report Post  
Posted to microsoft.public.excel.misc
vane0326
 
Posts: n/a
Default 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

  #8   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default 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),???







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to sum top 5 numbers from the column of numbers Martin Excel Discussion (Misc queries) 1 May 23rd 05 07:32 PM
How can I change positive numbers to negative, i.e. change 50 to - godwingi Excel Discussion (Misc queries) 5 February 28th 05 05:41 PM
Averaging Numbers when 2 numbers in one cell Ourania Excel Worksheet Functions 8 January 12th 05 06:40 PM
Validating random numbers plsauditor Excel Worksheet Functions 2 January 11th 05 11:12 PM
Sorting when some numbers have a text suffix confused on the tundra Excel Discussion (Misc queries) 5 December 18th 04 10:19 PM


All times are GMT +1. The time now is 04:53 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"