How do I sum variable parts of a row in Excel? -


i'm looking way sum 4 best scores out of these 6 tournaments played these 2 players. there code place in j2/j3 automatically pick best 4 scores , sum them, ignoring 2 worst scores? in advance!

see picture reference

still getting error

you can array formula.

=sum(large(d2:i2, row($1:$4))), entered ctrl-shift-enter

explanation: row($1:$4) expands array {1;2;3;4}, used large function take first, second, third , fourth highest values in given range.

alternatively, can specify using array literal remove need ctrl-shift-enter: =sum(large(d2:i2, {1;2;3;4}))


Comments

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -