Google-sheets – How to SUM LARGE 5 largest elements out of 8 numbers in a row

formulasgoogle sheetsgoogle-sheets-arrayformula

In Excel I am able to get the output using this formula:

=SUM(LARGE(C5:L5,{1,2,3,4,5}))

But in Google Sheets I am unable to get the right answer. Can anyone please help?

In the image below, observed 7th row the sum must be 49/50 using the technique =SUM(LARGE(C7:L7,{1,2,3,4,5})) but the solution is showing as “10” instead of “49”.

enter image description here

Best Answer

You need to use an array instead

=ArrayFormula(SUM(LARGE(C7:L7,{1,2,3,4,5})))

Google sheets SUM LARGE multiple nth largest elements

Functions used: