ワードの理解シリーズ{フィールドについて}

 

7章■数式と計算フィールド

 

6.関数のすべて(一覧)

 

関数

英語

日本語

ABS(x)

絶対値

Returns the positive value of a number or formula, regardless of its actual positive or negative value.

計算結果の値が正または負のどちらの場合でも、数値または式の絶対値が返されます。

AND(x,y)

論理式

Returns the value 1 if the logical expressions x and y are both true, or the value 0 (zero) if either expression is false.

論理式 x と論理式 y がどちらも True の場合は、1 が返されます。論理式 x と論理式 y のどちらか一方でも False の場合は、0 が返されます。

AVERAGE( )

平均値

Returns the average of a list of values.

指定した値の平均値が返されます。

COUNT( )

Returns the number of items in a list.

指定した項目の数が返されます。

DEFINED(x)

有効無効

Returns the value 1 (true) if the expression x is valid, or the value 0 (false) if the expression cannot be computed.

x が有効な場合は、1 (True) が返されます。式 x が計算できなかった場合は、0 (False) が返されます。

FALSE

0(ゼロ)

Returns 0 (zero).

0 が返されます。

INT(x)

整数

Returns the numbers to the left of the decimal place in the value or formula x.

数値 x または式 x の小数部分の左にある整数が返されます。

MIN( )

最小値

Returns the smallest value in a list.

指定した値のうち、最も小さい値が返されます。

MAX( )

最大値

Returns the largest value in a list.

指定した値のうち、最も大きい値が返されます。

MOD(x,y)

剰余

Returns the remainder that results from dividing the value x by the value y a whole number of times.

x を値 y で割ったときの剰余が返されます。

NOT(x)

論理式

Returns the value 0 (zero) (false) if the logical expression x is true, or the value 1 (true) if the expression is false.

論理式 x が True の場合は、0 (False) が返されます。論理式 x が False の場合は、1 (True) が返されます。

OR(x,y)

論理式

Returns the value 1 (true) if either or both logical expressions x and y are true, or the value 0 (zero) (false) if both expressions are false.

論理式 x と論理式 y のどちらかが True の場合かどちらも True の場合は、1 (True) が返されます。論理式 x と論理式 y がどちらも False の場合は、0 (False) が返されます。

PRODUCT( )

Returns the result of multiplying a list of values. For example, the function { = PRODUCT (1,3,7,9) } returns the value 189.

指定した値の積が返されます。たとえば、{ = PRODUCT (1,3,7,9) } という関数は、189 を返します。

ROUND(x,y)

四捨五入

Returns the value of x rounded to the specified number of decimal places y; x can be either a number or the result of a formula.

x を四捨五入して値 y で指定された桁数にします。x には、数値または式の結果を指定できます。

SIGN(x)

正負

Returns the value 1 if x is a positive value, or the value –1 if x is a negative value.

x が正の値の場合は 1、負の値の場合は -1 を返します。

SUM( )

合計値

Returns the sum of a list of values or formulas.

指定した値または式の合計値を返します。

TRUE

1

Returns the value 1.

1 を返します。