LoginSignup
0
1

More than 5 years have passed since last update.

Excel > 7個のデータから上下2個ずつを省いた平均 > AVERAGE(LARGE(C2:I2, {3,4,5}))

Last updated at Posted at 2016-09-09
動作環境
Excel 2013 on Windows 8.1 pro (64bit)
C D E F G H I
3 2 1 4 7 6 5

セルC2からI2に上記のように値が入っているとする。

上記のデータセットから「上下2個ずつを省いた平均」を求める方法。

=AVERAGE(LARGE(C2:I2, {3,4,5}))
  • LARGE()関数を用いて、インデックス(1始まり)の3,4,5番目を取る
    • 1,2と6,7を省く
  • LARGE()関数の戻り値をAVERAGE()する

上記の例の場合、(3+4+5)/3となり4が返る。

関連 http://qiita.com/7of9/items/9948c7f4b4efd90fdc36

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1