![]() |
| サイトマップ | |
|
関数 max
は、指定範囲内の最大の数値を返します。
max
(range)
引数 range には 1つの範囲 ({}
で指定) 、もしくは、ワークシートの1列を指定します。範囲内に欠損値や文字列が含まれている場合は無視されます。
x = {7,4,-4,5}
に対して max(x)
は 7 を、min(x)
は -4
を返します。
The max function returns the largest number found in the range specified.
max(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.