diff --git a/sheets/functions/engineering.xml b/sheets/functions/engineering.xml --- a/sheets/functions/engineering.xml +++ b/sheets/functions/engineering.xml @@ -196,7 +196,7 @@ Int - The DEC2BIN() function returns the value formatted as a binary number. + The DEC2BIN() function returns a decimal value formatted as a binary number. DEC2BIN(value) DEC2BIN(12) returns "1100" DEC2BIN(55) returns "110111" @@ -215,7 +215,7 @@ Int - The DEC2HEX() function returns the value formatted as a hexadecimal number. + The DEC2HEX() function returns a decimal value formatted as a hexadecimal number. DEC2HEX(value) DEC2HEX(12) returns "c" DEC2HEX(55) returns "37" @@ -234,7 +234,7 @@ Int - The DEC2OCT() function returns the value formatted as an octal number. + The DEC2OCT() function returns a decimal value formatted as an octal number. DEC2OCT(value) DEC2OCT(12) returns "14" DEC2OCT(55) returns "67" @@ -253,7 +253,7 @@ Int - The OCT2BIN() function returns the value formatted as a binary number. + The OCT2BIN() function returns an octal value formatted as a binary number. OCT2BIN(value) OCT2BIN("12") returns "1010" OCT2BIN("55") returns "101101" @@ -268,7 +268,7 @@ String - The OCT2DEC() function returns the value formatted as a decimal number. + The OCT2DEC() function returns an octal value formatted as a decimal number. OCT2DEC(value) OCT2DEC("12") returns 10 OCT2DEC("55") returns 45 @@ -287,7 +287,7 @@ Int - The OCT2HEX() function returns the value formatted as a hexadecimal number. + The OCT2HEX() function returns an octal value formatted as a hexadecimal number. OCT2HEX(value) OCT2HEX("12") returns "A" OCT2HEX("55") returns "2D" @@ -302,7 +302,7 @@ Int - The BIN2DEC() function returns the value formatted as a decimal number. + The BIN2DEC() function returns a binary value formatted as a decimal number. BIN2DEC(value) BIN2DEC("1010") returns 10 BIN2DEC("11111") returns 31 @@ -321,7 +321,7 @@ Int - The BIN2OCT() function returns the value formatted as an octal number. + The BIN2OCT() function returns a binary value formatted as an octal number. BIN2OCT(value) BIN2OCT("1010") returns "12" BIN2OCT("11111") returns "37" @@ -340,7 +340,7 @@ Int - The BIN2HEX() function returns the value formatted as a hexadecimal number. + The BIN2HEX() function returns a binary value formatted as a hexadecimal number. BIN2HEX(value) BIN2HEX("1010") returns "a" BIN2HEX("11111") returns "1f" @@ -355,7 +355,7 @@ String - The HEX2DEC() function returns the value formatted as a decimal number. + The HEX2DEC() function returns a hexadecimal value formatted as a decimal number. HEX2DEC(value) HEX2DEC("a") returns 10 HEX2DEC("37") returns 55 @@ -370,7 +370,7 @@ String - The HEX2OCT() function returns the value formatted as an octal number. + The HEX2OCT() function returns a hexadecimal value formatted as an octal number. HEX2OCT(value) HEX2OCT("a") returns "12" HEX2OCT("37") returns "67" @@ -385,7 +385,7 @@ String - The HEX2BIN() function returns the value formatted as a binary number. + The HEX2BIN() function returns a hexadecimal value formatted as a binary number. HEX2BIN(value) HEX2BIN("a") returns "1010" HEX2BIN("37") returns "110111"