Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to sum top 5 numbers from the column of numbers | Excel Discussion (Misc queries) | |||
How can I change positive numbers to negative, i.e. change 50 to - | Excel Discussion (Misc queries) | |||
Averaging Numbers when 2 numbers in one cell | Excel Worksheet Functions | |||
Validating random numbers | Excel Worksheet Functions | |||
Sorting when some numbers have a text suffix | Excel Discussion (Misc queries) |