P
picks72
I have 20 values in a row or column and what to average the lowest 10 values
of these 20. Is there a formula I can use?
of these 20. Is there a formula I can use?
Jacob Skaria said:Please note that this is an array formula. Within the cell in edit mode (F2)
paste this formula and press Ctrl+Shift+Enter to apply this formula. If
successful in 'Formula Bar' you can notice the curly braces at both ends like
"{=<formula>}"
Try the below with numbers in A1:A20
=AVERAGE(SMALL(A1:A20,ROW(A1:A10)))
If this post helps click Yes
Shane Devenshire said:In 2007 you can do this without an array formula:
=AVERAGEIF(A1:A20,"<"&SMALL(A1:A20,11))