![]() |
| サイトマップ | |
|
関数 min
は、指定範囲内の最小の数値を返します。
min
(range)
引数 range には 1つの範囲 ({}
で指定) 、もしくは、ワークシートの1列を指定します。範囲内に欠損値や文字列が含まれている場合は無視されます。
x = {7,4,-4,5}
に対して、max(x)
は 7 を返し、min(x)
は -4 を返します。
The min function returns the smallest number in the range specified.
min(range)
The range argument must be a single range (indicated with the { } brackets) or a worksheet column. Any missing value or text string contained within a range is ignored.
For x = {7,4,-4,5}, the operation max(x) returns a value of 7, and the operation min(x)returns a value of -4.