A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
in every row, i have got 6 numbers (eg. 2, 2, 1, 2, 1, 0). what is the formula i should insert to find the sum of the best 5 numbers out of 6 numbers? I can do it manually but I have got many rows (around 500).
If you mean by "best" as the largest values, perhaps on of a few ways...
Just remove the smallest number...
=SUM(A1:F1,-MIN(A1:F1))