T
Tiziano Bianchi
I would like to be able to average some account balances after
excluding an X number of lowest and highest values. I would
like to be able to specify every time how many of the lowest and
how many of the highest values to throw out, thus X could also be
equal to zero. The value assigned to X for the lowest values to
exclude would not necessarily match the one assigned for the
highest values to exclude.
I know how to do it if the value for X is 1, for both the highest and
lowest values:
=(SUM(range)-SMALL(range,1)-LARGE(range,1))/(COUNT(range)-2)
I don't know how to do it if the value for X is different than 1.
Thanks for all your help.
excluding an X number of lowest and highest values. I would
like to be able to specify every time how many of the lowest and
how many of the highest values to throw out, thus X could also be
equal to zero. The value assigned to X for the lowest values to
exclude would not necessarily match the one assigned for the
highest values to exclude.
I know how to do it if the value for X is 1, for both the highest and
lowest values:
=(SUM(range)-SMALL(range,1)-LARGE(range,1))/(COUNT(range)-2)
I don't know how to do it if the value for X is different than 1.
Thanks for all your help.