diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm index 4a6a1ef1c4..a0aa73472b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm @@ -15,24 +15,25 @@

ABS Function

-

The ABS function is one of the math and trigonometry functions. It is used to return the absolute value of a number.

-

The ABS function syntax is:

-

ABS(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the ABS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ABS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ABS Function

+

The ABS function is one of the math and trigonometry functions. It is used to return the absolute value of a number (i.e. the number without its sign).

+

Syntax

+

ABS(number)

+

The ABS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the absolute value.
+

Notes

+

How to apply the ABS function.

+

Examples

+

There is a single argument: number = A1 = -123.14. So the function returns 123.14 (-123.14 without its sign).

+

ABS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm index 67fb3834d4..bcf4a75513 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm @@ -15,59 +15,81 @@

ACCRINT Function

-

The ACCRINT function is one of the financial functions. It is used to calculate the accrued interest for a security that pays periodic interest.

-

The ACCRINT function syntax is:

-

ACCRINT(issue, first-interest, settlement, rate, [par], frequency[, [basis]])

-

where

-

issue is the issue date of the security.

-

first-interest is the date when the first interest is paid.

-

settlement is the date when the security is purchased.

-

rate is the annual coupon rate of the security.

-

par is the par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The ACCRINT function is one of the financial functions. It is used to calculate the accrued interest for a security that pays periodic interest.

+

Syntax

+

ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method])

+

The ACCRINT function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0issueThe issue date of the security.
first_interestThe date when the first interest is paid.
settlementThe date when the security is purchased.
rateThe annual coupon rate of the security.
parThe par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
calc_methodA logical value that specifies the way to calculate the accrued interest when the settlement date is later than the first_interest date. It is an optional argument. TRUE (1) returns the accrued interest from issue to settlement. FALSE (0) returns the accrued interest from first_interest to settlement. If the argument is omitted, TRUE is used by default.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ACCRINT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ACCRINT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ACCRINT Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the ACCRINT function.

+

Examples

+

The figure below displays the result returned by the ACCRINT function.

+

ACCRINT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm index 55483e3cad..51df3e01ba 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm @@ -15,57 +15,69 @@

ACCRINTM Function

-

The ACCRINTM function is one of the financial functions. It is used to calculate the accrued interest for a security that pays interest at maturity.

-

The ACCRINTM function syntax is:

-

ACCRINTM(issue, settlement, rate, [[par] [, [basis]]])

-

where

-

issue is the issue date of the security.

-

settlement is the maturity date of the security.

-

rate is the annual interest rate of the security.

-

par is the par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The ACCRINTM function is one of the financial functions. It is used to calculate the accrued interest for a security that pays interest at maturity.

+

Syntax

+

ACCRINTM(issue, settlement, rate, par, [basis])

+

The ACCRINTM function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0issueThe issue date of the security.
settlementThe maturity date of the security.
rateThe annual interest rate of the security.
parThe par value of the security. It is an optional argument. If it is omitted, the function will assume par to be $1000.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ACCRINTM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ACCRINTM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ACCRINTM Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the ACCRINTM function.

+

Examples

+

The figure below displays the result returned by the ACCRINTM function.

+

ACCRINTM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm index 8cb158104d..460ebf129a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm @@ -15,24 +15,25 @@

ACOS Function

-

The ACOS function is one of the math and trigonometry functions. It is used to return the arccosine of a number.

-

The ACOS function syntax is:

-

ACOS(x)

-

where x is the cosine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to.

-

To apply the ACOS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ACOS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ACOS Function

+

The ACOS function is one of the math and trigonometry functions. It is used to return the arccosine of a number.

+

Syntax

+

ACOS(number)

+

The ACOS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe cosine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1.
+

Notes

+

How to apply the ACOS function.

+

Examples

+

The figure below displays the result returned by the ACOS function.

+

ACOS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm index e642cabf11..1c36acf5b0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm @@ -15,24 +15,25 @@

ACOSH Function

-

The ACOSH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cosine of a number.

-

The ACOSH function syntax is:

-

ACOSH(x)

-

where x is a numeric value greater than or equal to 1 entered manually or included into the cell you make reference to.

-

To apply the ACOSH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ACOSH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ACOSH Function

+

The ACOSH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cosine of a number.

+

Syntax

+

ACOSH(number)

+

The ACOSH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value greater than or equal to 1.
+

Notes

+

How to apply the ACOSH function.

+

Examples

+

The figure below displays the result returned by the ACOSH function.

+

ACOSH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm index 5e7dbe44da..f172f0b7a3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm @@ -15,24 +15,25 @@

ACOT Function

-

The ACOT function is one of the math and trigonometry functions. It is used to return the principal value of the arccotangent, or inverse cotangent, of a number. The returned angle is measured in radians in the range 0 to Pi.

-

The ACOT function syntax is:

-

ACOT(x)

-

where x is the cotangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.

-

To apply the ACOT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ACOT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ACOT Function

+

The ACOT function is one of the math and trigonometry functions. It is used to return the principal value of the arccotangent, or inverse cotangent, of a number. The returned angle is measured in radians in the range 0 to Pi.

+

Syntax

+

ACOT(number)

+

The ACOT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe cotangent of the angle you wish to find, a numeric value.
+

Notes

+

How to apply the ACOT function.

+

Examples

+

The figure below displays the result returned by the ACOT function.

+

ACOT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm index 10ace2d30b..b500e8df37 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm @@ -15,24 +15,25 @@

ACOTH Function

-

The ACOTH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cotangent of a number.

-

The ACOTH function syntax is:

-

ACOTH(x)

-

where x is a numeric value less than -1 or greater than 1 entered manually or included into the cell you make reference to.

-

To apply the ACOTH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ACOTH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ACOTH Function

+

The ACOTH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic cotangent of a number.

+

Syntax

+

ACOTH(number)

+

The ACOTH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value less than -1 or greater than 1.
+

Notes

+

How to apply the ACOTH function.

+

Examples

+

The figure below displays the result returned by the ACOTH function.

+

ACOTH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm index f05f50dc29..706bf0e83a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm @@ -15,52 +15,64 @@

ADDRESS Function

-

The ADDRESS function is one of the lookup and reference functions. It is used to return a text representation of a cell address.

-

The ADDRESS function syntax is:

-

ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])

-

where

-

row_num is a row number to use in a cell address.

-

column_num is a column number to use in a cell address.

-

abs_num is a type of reference. It can be one of the following numeric values:

- - - - - - - - - - - - - - - - - - - - - -
Numeric valueMeaning
1 or omittedAbsolute referencing
2Absolute row; relative column
3Relative row; absolute column
4Relative referencing
-

a1 is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will return an A1-style reference. If it is set to FALSE, the function will return an R1C1-style reference.

-

sheet_text is the name of the sheet to use in a cell address. It's an optional value. If it is omitted, the function will return the cell address without the sheet name indicated.

-

These arguments can be entered manually or included into the cells you make reference to.

-

To apply the ADDRESS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the ADDRESS function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ADDRESS Function

+

The ADDRESS function is one of the lookup and reference functions. It is used to return a text representation of a cell address.

+

Syntax

+

ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])

+

The ADDRESS function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
row_numA row number to use in a cell address.
column_numA column number to use in a cell address.
abs_numA type of reference. The possible values are listed in the table below.
a1An optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will return an A1-style reference. If it is set to FALSE, the function will return an R1C1-style reference.
sheet_textThe name of the sheet to use in a cell address. It's an optional value. If it is omitted, the function will return the cell address without the sheet name indicated.
+

The abs_num argument can be one of the following:

+ + + + + + + + + + + + + + + + + + + + + +
Numeric valueMeaning
1 or omittedAbsolute referencing
2Absolute row; relative column
3Relative row; absolute column
4Relative referencing
+

Notes

+

How to apply the ADDRESS function.

+

Examples

+

The figure below displays the result returned by the ADDRESS function.

+

ADDRESS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm index 7f1fa07bb1..ece16a995c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm @@ -15,138 +15,160 @@

AGGREGATE Function

-

The AGGREGATE function is one of the math and trigonometry functions. The function is used to return an aggregate in a list or database. The AGGREGATE function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.

-

The AGGREGATE function syntax is:

-

AGGREGATE(function_num, options, ref1 [, ref2], ...)

-

where

-

function_num is a numeric value that specifies which function to use. The possible values are listed in the table below.

+

The AGGREGATE function is one of the math and trigonometry functions. The function is used to return an aggregate in a list or database. The AGGREGATE function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.

+

Syntax

+

AGGREGATE(function_num, options, ref1, [ref2], ...)

+

The AGGREGATE function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
function_num
FunctionArgumentDescription
1function_numA numeric value that specifies which function to use. The possible values are listed in the table below.
optionsA numeric value that specifies which values should be ignored. The possible values are listed in the table below.
ref1The first numeric value for which you want the aggregate value.
ref2Up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value. It is an optional argument.
+

The function_num argument can be one of the following:

+ + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
function_numFunction
1 AVERAGE
22 COUNT
33 COUNTA
44 MAX
55 MIN
66 PRODUCT
77 STDEV.S
88 STDEV.P
99 SUM
1010 VAR.S
1111 VAR.P
1212 MEDIAN
1313 MODE.SNGL
1414 LARGE
1515 SMALL
1616 PERCENTILE.INC
1717 QUARTILE.INC
1818 PERCENTILE.EXC
1919 QUARTILE.EXC
-

options is a numeric value that specifies which values should be ignored. The possible values are listed in the table below.

+

The options argument can be one of the following:

- - + + - + - + - + - + - + - + - + - + -
Numeric value
BehaviorNumeric valueBehavior
0 or omitted0 or omitted Ignore nested SUBTOTAL and AGGREGATE functions
11 Ignore hidden rows, nested SUBTOTAL and AGGREGATE functions
22 Ignore error values, nested SUBTOTAL and AGGREGATE functions
33 Ignore hidden rows, error values, nested SUBTOTAL and AGGREGATE functions
44 Ignore nothing
55 Ignore hidden rows
66 Ignore error values
77 Ignore hidden rows and error values
-

ref1(2) is up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value.

-

Note: if you want to use one of the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, or QUARTILE.EXC, ref1 must be a reference to the cell range and ref2 must be the second argument that is required for these functions (k or quart).

+ +

Notes

+

If you want to use one of the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, or QUARTILE.EXC, ref1 must be a reference to the cell range and ref2 must be the second argument that is required for these functions (k or quart).

- - + + @@ -173,23 +195,12 @@
Function
SyntaxFunctionSyntax
LARGEQUARTILE.EXC(array, quart)
-

To apply the AGGREGATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the AGGREGATE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

+

How to apply the AGGREGATE function.

+

Examples

The figure below displays the result returned by the AGGREGATE function when the SUM function is applied.

-

AGGREGATE Function

+

AGGREGATE Function

The figure below displays the result returned by the AGGREGATE function when the LARGE function is applied, ref1 is a reference to the cell range, and k is equal to 2. The function returns the second largest value in cells A1-A4.

-

AGGREGATE Function

+

AGGREGATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm index 36ab0ed522..9cc8c0bb1d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm @@ -15,59 +15,76 @@

AMORDEGRC Function

-

The AMORDEGRC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method.

-

The AMORDEGRC function syntax is:

-

AMORDEGRC(cost, date-purchased, first-period, salvage, period, rate[, [basis]])

-

where

-

cost is the cost of the asset.

-

date-purchased is the date when asset is purchased.

-

first-period is the date when the first period ends.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

period is the period you wish to calculate depreciation for.

-

rate is the rate of depreciation.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The AMORDEGRC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a degressive depreciation method.

+

Syntax

+

AMORDEGRC(cost, date_purchased, first_period, salvage, period, rate, [basis])

+

The AMORDEGRC function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0costThe cost of the asset.
date_purchasedThe date when asset is purchased.
first_periodThe date when the first period ends.
salvageThe salvage value of the asset at the end of its lifetime.
periodThe period you wish to calculate depreciation for.
rateThe rate of depreciation.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the AMORDEGRC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the AMORDEGRC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AMORDEGRC Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the AMORDEGRC function.

+

Examples

+

AMORDEGRC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm index 26834a7aed..c366ce584d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm @@ -15,59 +15,77 @@

AMORLINC Function

-

The AMORLINC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a linear depreciation method.

-

The AMORLINC function syntax is:

-

AMORLINC(cost, date-purchased, first-period, salvage, period, rate[, [basis]])

-

where

-

cost is the cost of the asset.

-

date-purchased is the date when asset is purchased.

-

first-period is the date when the first period ends.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

period is the period you wish to calculate depreciation for.

-

rate is the rate of depreciation.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The AMORLINC function is one of the financial functions. It is used to calculate the depreciation of an asset for each accounting period using a linear depreciation method.

+

Syntax

+

AMORLINC(cost, date_purchased, first_period, salvage, period, rate, [basis])

+

The AMORLINC function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0costThe cost of the asset.
date_purchasedThe date when asset is purchased.
first_periodThe date when the first period ends.
salvageThe salvage value of the asset at the end of its lifetime.
periodThe period you wish to calculate depreciation for.
rateThe rate of depreciation.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the AMORLINC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the AMORLINC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AMORLINC Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the AMORLINC function.

+

Examples

+

The figure below displays the result returned by the AMORLINC function.

+

AMORLINC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm index 281419420f..cf9023c758 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm @@ -15,30 +15,28 @@

AND Function

-

The AND function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE.

-

The AND function syntax is:

-

AND(logical1, logical2, ...)

-

where logical1/2/n is a value entered manually or included into the cell you make reference to.

-

To apply the AND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the AND function,
  8. -
  9. enter the required arguments separating them by commas, -

    Note: you can enter up to 255 logical values.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell. The function returns FALSE if at least one of the arguments is FALSE.

-

For example:

+

The AND function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if all the arguments are TRUE.

+

Syntax

+

AND(logical1, [logical2], ...)

+

The AND function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
logical1/2/nA condition that you want to check if it is TRUE or FALSE
+

Notes

+

How to apply the AND function.

+

The function returns FALSE if at least one of the arguments is FALSE.

+

Examples

There are three arguments: logical1 = A1<100, logical2 = 34<100, logical3 = 50<100, where A1 is 12. All these logical expressions are TRUE. So the function returns TRUE.

-

AND Function: TRUE

+

AND Function: TRUE

If we change the A1 value from 12 to 112, the function returns FALSE:

-

AND Function: FALSE

+

AND Function: FALSE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm index 75bd777838..03a9676164 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm @@ -15,26 +15,26 @@

ARABIC Function

-

The ARABIC function is one of the math and trigonometry functions. The function is used to convert a Roman numeral to an Arabic numeral.

-

The ARABIC function syntax is:

-

ARABIC(x)

-

where

-

x is a text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text.

-

Note: if an empty string ("") is used as an argument, the function returns the value 0.

-

To apply the ARABIC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ARABIC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ARABIC Function

+

The ARABIC function is one of the math and trigonometry functions. The function is used to convert a Roman numeral to an Arabic numeral.

+

Syntax

+

ARABIC(text)

+

The ARABIC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textA text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text.
+

Notes

+

If an empty string ("") is used as an argument, the function returns the value 0.

+

How to apply the ARABIC function.

+

Examples

+

The figure below displays the result returned by the ARABIC function.

+

ARABIC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/arraytotext.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/arraytotext.htm index ecbf549750..3702fd7632 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/arraytotext.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/arraytotext.htm @@ -15,35 +15,44 @@

ARRAYTOTEXT Function

-

The ARRAYTOTEXT function is a text and data function. It is used to return a range of data as a text string.

-

The ARRAYTOTEXT function syntax is:

-

=ARRAYTOTEXT(array, [format])

-

where

-

array is the range of data to return as text,

-

- [format] is an optional argument. The following values are available: -

-

- -

To apply the ARRAYTOTEXT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the ARRAYTOTEXT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ARRAYTOTEXT Function

+

The ARRAYTOTEXT function is one of the text and data functions. It is used to return a range of data as a text string.

+

Syntax

+

ARRAYTOTEXT(array, [format])

+

The ARRAYTOTEXT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of data to return as text.
formatAn optional argument. The possible values are listed in the table below.
+

The format argument can be one of the following:

+ + + + + + + + + + + + + +
FormatExplanation
0The values in the text string will be separated by comma (set by default).
1To enclose each text value in double quotes (except for numbers, true/false values and errors), to use a semicolon as a delimiter and to enclose the whole text string in curly braces.
+

Notes

+

How to apply the ARRAYTOTEXT function.

+

Examples

+

The figure below displays the result returned by the ARRAYTOTEXT function.

+

ARRAYTOTEXT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/asc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/asc.htm index ca2ddcf3ca..ef28b48a34 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/asc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/asc.htm @@ -15,25 +15,25 @@

ASC Function

-

The ASC function is one of the text and data functions. Is used to change full-width (double-byte) characters to half-width (single-byte) characters for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The ASC function syntax is:

-

ASC(text)

-

where text is a data entered manually or included into the cell you make reference to. If the text does not contain full-width characters it remains unchanged.

-

To apply the ASC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the ASC function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ASC Function

+

The ASC function is one of the text and data functions. Is used to change full-width (double-byte) characters to half-width (single-byte) characters for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

ASC(text)

+

The ASC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text or a reference to a cell containing the text you want to change. If the text does not contain full-width characters it remains unchanged.
+

Notes

+

How to apply the ASC function.

+

Examples

+

The figure below displays the result returned by the ASC function.

+

ASC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm index e00aaa666e..c3aae90e06 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm @@ -15,24 +15,25 @@

ASIN Function

-

The ASIN function is one of the math and trigonometry functions. It is used to return the arcsine of a number.

-

The ASIN function syntax is:

-

ASIN(x)

-

where x is the sine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to.

-

To apply the ASIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ASIN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ASIN Function

+

The ASIN function is one of the math and trigonometry functions. It is used to return the arcsine of a number.

+

Syntax

+

ASIN(number)

+

The ASIN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe sine of the angle you wish to find, a numeric value greater than or equal to -1 but less than or equal to 1 entered manually or included into the cell you make reference to.
+

Notes

+

How to apply the ASIN function.

+

Examples

+

The figure below displays the result returned by the ASIN function.

+

ASIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm index 35acdea8a7..eb0bc46437 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm @@ -15,24 +15,25 @@

ASINH Function

-

The ASINH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic sine of a number.

-

The ASINH function syntax is:

-

ASINH(x)

-

where x is any numeric value entered manually or included into the cell you make reference to.

-

To apply the ASINH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ASINH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ASINH Function

+

The ASINH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic sine of a number.

+

Syntax

+

ASINH(number)

+

The ASINH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberAny numeric value entered manually or included into the cell you make reference to.
+

Notes

+

How to apply the ASINH function.

+

Examples

+

The figure below displays the result returned by the ASINH function.

+

ASINH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm index 072179e5b9..76c31e15df 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm @@ -15,24 +15,25 @@

ATAN Function

-

The ATAN function is one of the math and trigonometry functions. It is used to return the arctangent of a number.

-

The ATAN function syntax is:

-

ATAN(x)

-

where x is the tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.

-

To apply the ATAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ATAN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ATAN Function

+

The ATAN function is one of the math and trigonometry functions. It is used to return the arctangent of a number.

+

Syntax

+

ATAN(number)

+

The ATAN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.
+

Notes

+

How to apply the ATAN function.

+

Examples

+

The figure below displays the result returned by the ATAN function.

+

ATAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm index 9cf25bdde9..d5c2197c79 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm @@ -15,24 +15,29 @@

ATAN2 Function

-

The ATAN2 function is one of the math and trigonometry functions. It is used to return the arctangent of x and y coordinates.

-

The ATAN2 function syntax is:

-

ATAN2(x, y)

-

where x, y are the x and y coordinates of a point, numeric values entered manually or included into the cell you make reference to.

-

To apply the ATAN2 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ATAN2 function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ATAN2 Function

+

The ATAN2 function is one of the math and trigonometry functions. It is used to return the arctangent of x and y coordinates.

+

Syntax

+

ATAN2(x_num, y_num)

+

The ATAN2 function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
x_numThe x coordinate of a point, a numeric value entered manually or included into the cell you make reference to.
y_numThe y coordinate of a point, a numeric value entered manually or included into the cell you make reference to.
+

Notes

+

How to apply the ATAN2 function.

+

Examples

+

The figure below displays the result returned by the ATAN2 function.

+

ATAN2 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm index c846b1c62f..99d6752be1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm @@ -15,24 +15,25 @@

ATANH Function

-

The ATANH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic tangent of a number.

-

The ATANH function syntax is:

-

ATANH(x)

-

where x is a numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to.

-

To apply the ATANH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ATANH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ATANH Function

+

The ATANH function is one of the math and trigonometry functions. It is used to return the inverse hyperbolic tangent of a number.

+

Syntax

+

ATANH(number)

+

The ATANH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to.
+

Notes

+

How to apply the ATANH function.

+

Examples

+

The figure below displays the result returned by the ATANH function.

+

ATANH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm index 501dc48787..698bc659fc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm @@ -15,25 +15,25 @@

AVEDEV Function

-

The AVEDEV function is one of the statistical functions. It is used to analyze the range of data and return the average of the absolute deviations of numbers from their mean.

-

The AVEDEV function syntax is:

-

AVEDEV(argument-list)

-

where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to.

-

To apply the AVEDEV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the AVEDEV function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AVEDEV Function

+

The AVEDEV function is one of the statistical functions. It is used to analyze the range of data and return the average of the absolute deviations of numbers from their mean.

+

Syntax

+

AVEDEV(number1, [number2], ...)

+

The AVEDEV function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the average of the absolute deviations.
+

Notes

+

How to apply the AVEDEV function.

+

Examples

+

The figure below displays the result returned by the AVEDEV function.

+

AVEDEV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm index e33d03218b..d90cd1cd8a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm @@ -15,26 +15,25 @@

AVERAGE Function

-

The AVERAGE function is one of the statistical functions. It is used to analyze the range of data and find the average value.

-

The AVERAGE function syntax is:

-

AVERAGE(argument-list)

-

where argument-list is up to 255 numerical values entered manually or included into the cells you make reference to.

-

How to use AVERAGE

-

To apply the AVERAGE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the AVERAGE function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AVERAGE Function

+

The AVERAGE function is one of the statistical functions. It is used to analyze the range of data and find the average value.

+

Syntax

+

AVERAGE(number1, [number2], ...)

+

The AVERAGE function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numerical values for which you want to find the average value.
+

Notes

+

How to apply the AVERAGE function.

+

Examples

+

The figure below displays the result returned by the AVERAGE function.

+

AVERAGE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm index 9be76ece12..ef262fc2ad 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm @@ -15,25 +15,27 @@

AVERAGEA Function

-

The AVERAGEA function is one of the statistical functions. It is used to analyze the range of data including text and logical values and find the average value. The AVERAGEA function treats text and FALSE as a value of 0 and TRUE as a value of 1.

-

The AVERAGEA function syntax is:

-

AVERAGEA(argument-list)

-

where argumenti-list is up to 255 values entered manually or included into the cells you make reference to.

-

To apply the AVERAGEA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the AVERAGEA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AVERAGEA Function

+

The AVERAGEA function is one of the statistical functions. It is used to analyze the range of data including text and logical values and find the average value. The AVERAGEA function treats text and FALSE as a value of 0 and TRUE as a value of 1.

+

Syntax

+

AVERAGEA(value1, [value2], ...)

+

The AVERAGEA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values for which you want to find the average value.
+ +

Notes

+

How to apply the AVERAGEA function.

+ +

Examples

+

The figure below displays the result returned by the AVERAGEA function.

+

AVERAGEA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm index 0b57c54894..b869035b19 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm @@ -15,29 +15,36 @@

AVERAGEIF Function

-

The AVERAGEIF function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on the specified criterion.

-

The AVERAGEIF function syntax is:

-

AVERAGEIF(cell-range, selection-criteria [,average-range])

-

where

-

cell-range is the selected range of cells to apply the criterion to.

-

selection-criteria is the criterion you wish to apply, a value entered manually or included into the cell you make reference to.

-

average-range is the selected range of cells you need to find the average in.

-

average-range is an optional argument. If it is omitted, the function will find the average in cell-range.

-

How to use AVERAGEIF

-

To apply the AVERAGEIF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the AVERAGEIF function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AVERAGEIF Function

+

The AVERAGEIF function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on the specified criterion.

+

Syntax

+

AVERAGEIF(range, criteria, [average_range])

+

The AVERAGEIF function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
rangeThe selected range of cells to apply the criterion to.
criteriaThe criterion you wish to apply, a value entered manually or included into the cell you make reference to.
average_rangeThe selected range of cells you need to find the average in.
+ +

Notes

+

average_range is an optional argument. If it is omitted, the function will find the average in range.

+

How to apply the AVERAGEIF function.

+ +

Examples

+

The figure below displays the result returned by the AVERAGEIF function.

+

AVERAGEIF Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm index 6fbd16b0ae..e7704f0911 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm @@ -15,30 +15,40 @@

AVERAGEIFS Function

-

The AVERAGEIFS function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on multiple criteria.

-

The AVERAGEIFS function syntax is:

-

AVERAGEIFS(average-range, criteria-range-1, criteria-1, [criteria-range-2, criteria-2], ...)

-

where

-

average-range is the selected range of cells you need to find the average in. It is a required argument.

-

criteria-range-1 is the first selected range of cells to apply the criteria-1 to. It is a required argument.

-

criteria-1 is the first condition that must be met. It is applied to the criteria-range-1 and used to determine the cells in the average-range to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument.

-

criteria-range-2, criteria-2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.

-

Note: you can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

-

How to use AVERAGEIFS

-

To apply the AVERAGEIFS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the AVERAGEIFS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

AVERAGEIFS Function

+

The AVERAGEIFS function is one of the statistical functions. It is used to analyze the range of data and find the average value of all numbers in a range of cells, based on multiple criteria.

+

Syntax

+

AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

+

The AVERAGEIFS function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
average_rangeThe selected range of cells you need to find the average in. It is a required argument.
criteria_range1The first selected range of cells to apply the criteria1 to. It is a required argument.
criteria1The first condition that must be met. It is applied to the criteria_range1 and used to determine the cells in the average_range to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument.
criteria_range2, criteria2, ...Additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.
+ +

Notes

+

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

+

How to apply the AVERAGEIFS function.

+ +

Examples

+

The figure below displays the result returned by the AVERAGEIFS function.

+

AVERAGEIFS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm index 13d586ae91..44918df5f5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm @@ -15,28 +15,35 @@

BASE Function

-

The BASE function is one of the math and trigonometry functions. It is used to convert a number into a text representation with the given base.

-

The BASE function syntax is:

-

BASE(number, base[, min-lenght])

-

where

-

number is a number you want to convert. An integer greater than or equal to 0 and less than 2^53.

-

base is a base you want to convert the number to. An integer greater than or equal to 2 and less than or equal to 36.

-

min-lenght is a minimum length of the returned string. An integer greater than or equal to 0 and less than 256. It is an optional parameter. If the result is shorter than the minimum lenght specified, leading zeros are added to the string.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the BASE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the BASE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BASE Function

+

The BASE function is one of the math and trigonometry functions. It is used to convert a number into a text representation with the given base.

+

Syntax

+

BASE(number, radix, [min_length])

+

The BASE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberA number you want to convert. An integer greater than or equal to 0 and less than 2^53.
radixA base you want to convert the number to. An integer greater than or equal to 2 and less than or equal to 36.
min_lengthA minimum length of the returned string. An integer greater than or equal to 0 and less than 256. It is an optional parameter. If the result is shorter than the minimum lenght specified, leading zeros are added to the string.
+ +

Notes

+

How to apply the BASE function.

+ +

Examples

+

The figure below displays the result returned by the BASE function.

+

BASE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm index e9616b524c..73fcccb4f6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm @@ -15,27 +15,31 @@

BESSELI Function

-

The BESSELI function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.

-

The BESSELI function syntax is:

-

BESSELI(X, N)

-

where

-

X is the value at which to evaluate the function,

-

N is the order of the Bessel function, a numeric value greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the BESSELI function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BESSELI function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BESSELI Function

+

The BESSELI function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.

+

Syntax

+

BESSELI(x, n)

+

The BESSELI function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which to evaluate the function.
nThe order of the Bessel function, a numeric value greater than or equal to 0.
+ +

Notes

+

How to apply the BESSELI function.

+ +

Examples

+

The figure below displays the result returned by the BESSELI function.

+

BESSELI Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm index 2412f58e5c..ee200930b5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm @@ -15,27 +15,31 @@

BESSELJ Function

-

The BESSELJ function is one of the engineering functions. It is used to return the Bessel function.

-

The BESSELJ function syntax is:

-

BESSELJ(X, N)

-

where

-

X is the value at which to evaluate the function,

-

N is the order of the Bessel function, a numeric value greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the BESSELJ function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BESSELJ function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BESSELJ Function

+

The BESSELJ function is one of the engineering functions. It is used to return the Bessel function.

+

Syntax

+

BESSELJ(x, n)

+

The BESSELJ function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which to evaluate the function.
nThe order of the Bessel function, a numeric value greater than or equal to 0.
+ +

Notes

+

How to apply the BESSELJ function.

+ +

Examples

+

The figure below displays the result returned by the BESSELJ function.

+

BESSELJ Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm index 3a66d2d07d..374ac7069c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm @@ -15,27 +15,31 @@

BESSELK Function

-

The BESSELK function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments.

-

The BESSELK function syntax is:

-

BESSELK(X, N)

-

where

-

X is the value at which to evaluate the function, a numeric value greater than 0,

-

N is the order of the Bessel function, a numeric value greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the BESSELK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BESSELK function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BESSELK Function

+

The BESSELK function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments.

+

Syntax

+

BESSELK(x, n)

+

The BESSELK function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which to evaluate the function, a numeric value greater than 0.
nThe order of the Bessel function, a numeric value greater than or equal to 0.
+ +

Notes

+

How to apply the BESSELK function.

+ +

Examples

+

The figure below displays the result returned by the BESSELK function.

+

BESSELK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm index ff3c989cb3..665694077e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm @@ -15,27 +15,31 @@

BESSELY Function

-

The BESSELY function is one of the engineering functions. It is used to return the Bessel function, which is also called the Weber function or the Neumann function.

-

The BESSELY function syntax is:

-

BESSELY(X, N)

-

where

-

X is the value at which to evaluate the function, a numeric value greater than 0,

-

N is the order of the Bessel function, a numeric value greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the BESSELY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BESSELY function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BESSELY Function

+

The BESSELY function is one of the engineering functions. It is used to return the Bessel function, which is also called the Weber function or the Neumann function.

+

Syntax

+

BESSELY(x, n)

+

The BESSELY function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which to evaluate the function, a numeric value greater than 0.
nThe order of the Bessel function, a numeric value greater than or equal to 0.
+ +

Notes

+

How to apply the BESSELY function.

+ +

Examples

+

The figure below displays the result returned by the BESSELY function.

+

BESSELY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm index 04f9735b3e..e1e48f6c6c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm @@ -15,31 +15,47 @@

BETA.DIST Function

-

The BETA.DIST function is one of the statistical functions. It is used to return the beta distribution.

-

The BETA.DIST function syntax is:

-

BETA.DIST(x, alpha, beta, cumulative, [,[A] [,[B]])

-

where

-

x is the value between A and B at which the function should be calculated.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used.

-

B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BETA.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BETA.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BETA.DIST Function

+

The BETA.DIST function is one of the statistical functions. It is used to return the beta distribution.

+

Syntax

+

BETA.DIST(x, alpha, beta, cumulative, [A], [B])

+

The BETA.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value between A and B at which the function should be calculated.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
AThe lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used.
BThe upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used.
+ +

Notes

+

How to apply the BETA.DIST function.

+ +

Examples

+

The figure below displays the result returned by the BETA.DIST function.

+

BETA.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm index be5fb50e7d..fc5d2efa0b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm @@ -15,30 +15,43 @@

BETA.INV Function

-

The BETA.INV function is one of the statistical functions. It is used to return the inverse of the beta cumulative probability density function (BETA.DIST).

-

The BETA.INV function syntax is:

-

BETA.INV(probability, alpha, beta, [,[A] [,[B]])

-

where

-

probability is a probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0.

-

A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used.

-

B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BETA.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BETA.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BETA.INV Function

+

The BETA.INV function is one of the statistical functions. It is used to return the inverse of the beta cumulative probability density function (BETA.DIST).

+

Syntax

+

BETA.INV(probability, alpha, beta, [A], [B])

+

The BETA.INV function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityA probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0.
AThe lower bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 0 is used.
BThe upper bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 1 is used.
+ +

Notes

+

How to apply the BETA.INV function.

+ +

Examples

+

The figure below displays the result returned by the BETA.INV function.

+

BETA.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm index ab6e4909ed..b1f62f2335 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm @@ -15,30 +15,42 @@

BETADIST Function

-

The BETADIST function is one of the statistical functions. It is used to return the cumulative beta probability density function.

-

The BETADIST function syntax is:

-

BETADIST(x, alpha, beta, [,[A] [,[B]])

-

where

-

x is the value between A and B at which the function should be calculated.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0.

-

A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used.

-

B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BETADIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BETADIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BETADIST Function

+

The BETADIST function is one of the statistical functions. It is used to return the cumulative beta probability density function.

+

Syntax

+

BETADIST(x, alpha, beta, [A], [B])

+

The BETADIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value between A and B at which the function should be calculated.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0.
AThe lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used.
BThe upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used.
+ +

Notes

+

How to apply the BETADIST function.

+ +

Examples

+

The figure below displays the result returned by the BETADIST function.

+

BETADIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/betainv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/betainv.htm index cfa0f3c242..a3ee1d027d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/betainv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/betainv.htm @@ -15,30 +15,42 @@

BETAINV Function

-

The BETAINV function is one of the statistical functions. It is used to return the inverse of the cumulative beta probability density function for a specified beta distribution.

-

The BETAINV function syntax is:

-

BETAINV(x, alpha, beta, [,[A] [,[B]])

-

where

-

x is a probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0.

-

A is the lower bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 0 is used.

-

B is the upper bound to the interval of x. It is an optional parameter. If it is omitted, the default value of 1 is used.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BETAINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BETAINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BETAINV Function

+

The BETAINV function is one of the statistical functions. It is used to return the inverse of the cumulative beta probability density function for a specified beta distribution.

+

Syntax

+

BETAINV(probability, alpha, beta, [A], [B])

+

The BETAINV function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityA probability associated with the beta distribution. A numeric value greater than 0 and less than or equal to 1.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0.
AThe lower bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 0 is used.
BThe upper bound to the interval of probability. It is an optional parameter. If it is omitted, the default value of 1 is used.
+ +

Notes

+

How to apply the BETAINV function.

+ +

Examples

+

The figure below displays the result returned by the BETAINV function.

+

BETAINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm index f50a6713ab..193fb85b9f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm @@ -15,25 +15,28 @@

BIN2DEC Function

-

The BIN2DEC function is one of the engineering functions. It is used to convert a binary number into a decimal number.

-

The BIN2DEC function syntax is:

-

BIN2DEC(number)

-

where number is a binary number entered manually or included into the cell you make reference to.

-

Note: if the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the #NUM! error.

-

To apply the BIN2DEC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BIN2DEC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BIN2DEC Function

+

The BIN2DEC function is one of the engineering functions. It is used to convert a binary number into a decimal number.

+

Syntax

+

BIN2DEC(number)

+

The BIN2DEC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA binary number entered manually or included into the cell you make reference to.
+ +

Notes

+

If the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the #NUM! error.

+

How to apply the BIN2DEC function.

+ +

Examples

+

The figure below displays the result returned by the BIN2DEC function.

+

BIN2DEC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm index ebbd854756..ecc4b1b359 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm @@ -15,27 +15,32 @@

BIN2HEX Function

-

The BIN2HEX function is one of the engineering functions. It is used to convert a binary number into a hexadecimal number.

-

The BIN2HEX function syntax is:

-

BIN2HEX(number [, num-hex-digits])

-

where

-

number is a binary number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the BIN2HEX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BIN2HEX function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BIN2HEX Function

+

The BIN2HEX function is one of the engineering functions. It is used to convert a binary number into a hexadecimal number.

+

Syntax

+

BIN2HEX(number, [places])

+

The BIN2HEX function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA binary number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+ +

Notes

+

If the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the BIN2HEX function.

+ +

Examples

+

The figure below displays the result returned by the BIN2HEX function.

+

BIN2HEX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm index ce6f37dcac..a64b46db7b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm @@ -15,27 +15,32 @@

BIN2OCT Function

-

The BIN2OCT function is one of the engineering functions. It is used to convert a binary number into an octal number.

-

The BIN2OCT function syntax is:

-

BIN2OCT(number [, num-hex-digits])

-

where

-

number is a binary number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the BIN2OCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BIN2OCT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BIN2OCT Function

+

The BIN2OCT function is one of the engineering functions. It is used to convert a binary number into an octal number.

+

Syntax

+

BIN2OCT(number, [places])

+

The BIN2OCT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA binary number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+ +

Notes

+

If the argument is not recognised as a binary number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the BIN2OCT function.

+ +

Examples

+

The figure below displays the result returned by the BIN2OCT function.

+

BIN2OCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm index 64aa191836..0e8f7e576a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm @@ -15,29 +15,39 @@

BINOM.DIST.RANGE Function

-

The BINOM.DIST.RANGE function is one of the statistical functions. It is used to return the probability of a trial result using a binomial distribution.

-

The BINOM.DIST.RANGE function syntax is:

-

BINOM.DIST.RANGE(trials, probability-s, number-s [, number-s2])

-

where

-

trials is the number of trials, a numeric value greater than or equal to number-s.

-

probability-s is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.

-

number-s is the minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0.

-

number-s2 is an optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than number-s and less than or equal to trials.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BINOM.DIST.RANGE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BINOM.DIST.RANGE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BINOM.DIST.RANGE Function

+

The BINOM.DIST.RANGE function is one of the statistical functions. It is used to return the probability of a trial result using a binomial distribution.

+

Syntax

+

BINOM.DIST.RANGE(trials, probability_s, number_s, [number_s2])

+

The BINOM.DIST.RANGE function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
trialsThe number of trials, a numeric value greater than or equal to number_s.
probabilityThe success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.
number_sThe minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0.
number_s2An optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than number_s and less than or equal to trials.
+ +

Notes

+

How to apply the BINOM.DIST.RANGE function.

+ +

Examples

+

The figure below displays the result returned by the BINOM.DIST.RANGE function.

+

BINOM.DIST.RANGE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm index 7bf01de4fe..b8219951ee 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm @@ -15,29 +15,39 @@

BINOM.DIST Function

-

The BINOM.DIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability.

-

The BINOM.DIST function syntax is:

-

BINOM.DIST(number-s, trials, probability-s, cumulative)

-

where

-

number-s is the number of successes in the trials, a numeric value greater than or equal to 0.

-

trials is the number of trials, a numeric value greater than or equal to number-s.

-

probability-s is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BINOM.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BINOM.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BINOM.DIST Function

+

The BINOM.DIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability.

+

Syntax

+

BINOM.DIST(number_s, trials, probability_s, cumulative)

+

The BINOM.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
number_sThe number of successes in the trials, a numeric value greater than or equal to 0.
trialsThe number of trials, a numeric value greater than or equal to number_s.
probability_sThe success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.
+ +

Notes

+

How to apply the BINOM.DIST function.

+ +

Examples

+

The figure below displays the result returned by the BINOM.DIST function.

+

BINOM.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm index 3bbfbe394f..1f3adbe7de 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm @@ -15,28 +15,35 @@

BINOM.INV Function

-

The BINOM.INV function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.

-

The BINOM.INV function syntax is:

-

BINOM.INV(trials, probability-s, alpha)

-

where

-

trials is the number of trials, a numeric value greater than 0.

-

probability-s is the success probability of each trial, a numeric value greater than 0 but less than 1.

-

alpha is the criterion, a numeric value greater than 0 but less than 1.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the BINOM.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BINOM.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BINOM.INV Function

+

The BINOM.INV function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.

+

Syntax

+

BINOM.INV(trials, probability_s, alpha)

+

The BINOM.INV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
trialsThe number of trials, a numeric value greater than 0.
probability_sThe success probability of each trial, a numeric value greater than 0 but less than 1.
alphaThe criterion, a numeric value greater than 0 but less than 1.
+ +

Notes

+

How to apply the BINOM.INV function.

+ +

Examples

+

The figure below displays the result returned by the BINOM.INV function.

+

BINOM.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm index cf624d0cbc..f98da76e58 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm @@ -15,29 +15,39 @@

BINOMDIST Function

-

The BINOMDIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability.

-

The BINOMDIST function syntax is:

-

BINOMDIST(number-successes, number-trials, success-probability, cumulative-flag)

-

where

-

number-successes is the number of successes in the trials, a numeric value greater than or equal to 0.

-

number-trials is the number of trials, a numeric value greater than or equal to number-successes.

-

success-probability is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.

-

cumulative-flag is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the BINOMDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the BINOMDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BINOMDIST Function

+

The BINOMDIST function is one of the statistical functions. It is used to return the individual term binomial distribution probability.

+

Syntax

+

BINOMDIST(number_s, trials, probability_s, cumulative)

+

The BINOMDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
number_sThe number of successes in the trials, a numeric value greater than or equal to 0.
trialsThe number of trials, a numeric value greater than or equal to number_s.
probability_sThe success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.
+ +

Notes

+

How to apply the BINOMDIST function.

+ +

Examples

+

The figure below displays the result returned by the BINOMDIST function.

+

BINOMDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm index 21c76b1790..dc93a9f233 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm @@ -15,28 +15,32 @@

BITAND Function

-

The BITAND function is one of the engineering functions. It is used to return a bitwise 'AND' of two numbers.

-

The BITAND function syntax is:

-

BITAND(number1, number2)

-

where

-

number1 is a numeric value in decimal form greater than or equal to 0,

-

number2 is a numeric value in decimal form greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

+

The BITAND function is one of the engineering functions. It is used to return a bitwise 'AND' of two numbers.

+

Syntax

+

BITAND(number1, number2)

+

The BITAND function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
number1A numeric value in decimal form greater than or equal to 0.
number2A numeric value in decimal form greater than or equal to 0.
+ +

Notes

The value of each bit position is counted only if both parameter's bits at that position are 1.

-

To apply the BITAND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BITAND function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BITAND Function

+

How to apply the BITAND function.

+ +

Examples

+

The figure below displays the result returned by the BITAND function.

+

BITAND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm index 541158e5e3..c8e8db26f4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm @@ -15,28 +15,32 @@

BITLSHIFT Function

-

The BITLSHIFT function is one of the engineering functions. It is used to return a number shifted left by the specified number of bits.

-

The BITLSHIFT function syntax is:

-

BITLSHIFT(number, shift_amount)

-

where

-

number is an integer greater than or equal to 0,

-

shift_amount is a number of bits by which you want to shift number, an integer.

-

The numeric values can be entered manually or included into the cell you make reference to.

+

The BITLSHIFT function is one of the engineering functions. It is used to return a number shifted left by the specified number of bits.

+

Syntax

+

BITLSHIFT(number, shift_amount)

+

The BITLSHIFT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberAn integer greater than or equal to 0.
shift_amountA number of bits by which you want to shift number, an integer.
+ +

Notes

Shifting a number left is equivalent to adding zeros (0) to the right of the binary representation of the number.

-

To apply the BITLSHIFT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BITLSHIFT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BITLSHIFT Function

+

How to apply the BITLSHIFT function.

+ +

Examples

+

The figure below displays the result returned by the BITLSHIFT function.

+

BITLSHIFT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm index a4dd60d041..5f5a13866c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm @@ -15,28 +15,32 @@

BITOR Function

-

The BITOR function is one of the engineering functions. It is used to return a bitwise 'OR' of two numbers.

-

The BITOR function syntax is:

-

BITOR(number1, number2)

-

where

-

number1 is a numeric value in decimal form greater than or equal to 0,

-

number2 is a numeric value in decimal form greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

+

The BITOR function is one of the engineering functions. It is used to return a bitwise 'OR' of two numbers.

+

Syntax

+

BITOR(number1, number2)

+

The BITOR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
number1A numeric value in decimal form greater than or equal to 0.
number2A numeric value in decimal form greater than or equal to 0.
+ +

Notes

The value of each bit position is counted if either of the parameters has 1 at that position.

-

To apply the BITOR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BITOR function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BITOR Function

+

How to apply the BITOR function.

+ +

Examples

+

The figure below displays the result returned by the BITOR function.

+

BITOR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm index 18a7d8d5ee..42c50653b1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm @@ -15,28 +15,32 @@

BITRSHIFT Function

-

The BITRSHIFT function is one of the engineering functions. It is used to return a number shifted right by the specified number of bits.

-

The BITRSHIFT function syntax is:

-

BITRSHIFT(number, shift_amount)

-

where

-

number is an integer greater than or equal to 0,

-

shift_amount is a number of bits by which you want to shift number, an integer.

-

The numeric values can be entered manually or included into the cell you make reference to.

+

The BITRSHIFT function is one of the engineering functions. It is used to return a number shifted right by the specified number of bits.

+

Syntax

+

BITRSHIFT(number, shift_amount)

+

The BITRSHIFT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberAn integer greater than or equal to 0.
shift_amountA number of bits by which you want to shift number, an integer.
+ +

Notes

Shifting a number right is equivalent to removing digits from the rightmost side of the binary representation of the number.

-

To apply the BITRSHIFT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BITRSHIFT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BITRSHIFT Function

+

How to apply the BITRSHIFT function.

+ +

Examples

+

The figure below displays the result returned by the BITRSHIFT function.

+

BITRSHIFT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm index eb5f0c6f32..d67015b8ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm @@ -15,28 +15,32 @@

BITXOR Function

-

The BITXOR function is one of the engineering functions. It is used to return a bitwise 'XOR' of two numbers.

-

The BITXOR function syntax is:

-

BITXOR(number1, number2)

-

where

-

number1 is a numeric value in decimal form greater than or equal to 0,

-

number2 is a numeric value in decimal form greater than or equal to 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

+

The BITXOR function is one of the engineering functions. It is used to return a bitwise 'XOR' of two numbers.

+

Syntax

+

BITXOR(number1, number2)

+

The BITXOR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
number1A numeric value in decimal form greater than or equal to 0.
number2A numeric value in decimal form greater than or equal to 0.
+ +

Notes

The value of each bit position is 1 when the bit positions of the parameters are different.

-

To apply the BITXOR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the BITXOR function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

BITXOR Function

+

How to apply the BITXOR function.

+ +

Examples

+

The figure below displays the result returned by the BITXOR function.

+

BITXOR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-math.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-math.htm index ffdf841d55..6e7935a0a7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-math.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-math.htm @@ -15,28 +15,35 @@

CEILING.MATH Function

-

The CEILING.MATH function is one of the math and trigonometry functions. It is used to round a number up to the nearest integer or to the nearest multiple of significance.

-

The CEILING.MATH function syntax is:

-

CEILING.MATH(x [, [significance] [, [mode]])

-

where

-

x is the number you wish to round up.

-

significance is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used.

-

mode specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the CEILING.MATH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the CEILING.MATH function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CEILING.MATH Function

+

The CEILING.MATH function is one of the math and trigonometry functions. It is used to round a number up to the nearest integer or to the nearest multiple of significance.

+

Syntax

+

CEILING.MATH(number, [significance], [mode])

+

The CEILING.MATH function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round up.
significanceThe multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used.
modeSpecifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded towards zero. If any other numeric value is specified, negative numbers are rounded away from zero.
+ +

Notes

+

How to apply the CEILING.MATH function.

+ +

Examples

+

The figure below displays the result returned by the CEILING.MATH function.

+

CEILING.MATH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-precise.htm index 77810e9609..2ca04e6be1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-precise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling-precise.htm @@ -15,27 +15,31 @@

CEILING.PRECISE Function

-

The CEILING.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing.

-

The CEILING.PRECISE function syntax is:

-

CEILING.PRECISE(x [, significance])

-

where

-

x is the number you wish to round up.

-

significance is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the CEILING.PRECISE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the CEILING.PRECISE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CEILING.PRECISE Function

+

The CEILING.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing.

+

Syntax

+

CEILING.PRECISE(number, [significance])

+

The CEILING.PRECISE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round up.
significanceThe multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.
+ +

Notes

+

How to apply the CEILING.PRECISE function.

+ +

Examples

+

The figure below displays the result returned by the CEILING.PRECISE function.

+

CEILING.PRECISE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm index caf06ff995..3c1bd941ee 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm @@ -15,28 +15,32 @@

CEILING Function

-

The CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance.

-

The CEILING function syntax is:

-

CEILING(x, significance)

-

where

-

x is the number you wish to round up,

-

significance is the multiple of significance you wish to round up to,

-

The numeric values can be entered manually or included into the cell you make reference to.

-

Note: if the values of x and significance have different signs, the function returns the #NUM! error.

-

To apply the CEILING function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the CEILING function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CEILING Function

+

The CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance.

+

Syntax

+

CEILING(number, significance)

+

The CEILING function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round up.
significanceThe multiple of significance you wish to round up to.
+ +

Notes

+

If the values of number and significance have different signs, the function returns the #NUM! error.

+

How to apply the CEILING function.

+ +

Examples

+

The figure below displays the result returned by the CEILING function.

+

CEILING Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm index 68ed0d94ab..24651c1121 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cell.htm @@ -15,175 +15,181 @@

CELL Function

-

The CELL function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell.

-

The CELL function syntax is:

-

CELL(info_type, [reference])

-

where:

-

info_type is a text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below.

-

[reference] is a cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the reference argument is specified as a range of cells, the function returns the information for the upper-left cell of the range.

+

The CELL function is one of the information functions. It is used to return information about the formatting, location, or contents of a cell.

+

Syntax

+

CELL(info_type, [reference])

+

The CELL function has the following arguments:

- - + + - + + + + + + + +
Text valueType of informationArgumentDescription
"address"info_typeA text value that specifies which information about the cell you want to get. This is the required argument. The available values are listed in the table below.
referenceA cell that you want to get information about. If it is omitted, the information is returned for the last changed cell. If the reference argument is specified as a range of cells, the function returns the information for the upper-left cell of the range.
+

The info_type argument can be one of the following:

+ + + + + + + - + - + - + - + - + - + - + - + - + - + - +
Text valueType of information
"address" Returns the reference to the cell.
"col""col" Returns the column number where the cell is located.
"color""color" Returns 1 if the cell is formatted in color for negative values; otherwise returns 0.
"contents""contents" Returns the value that the cell contains.
"filename""filename" Returns the filename of the file that contains the cell.
"format""format" Returns a text value corresponding to the number format of the cell. The text values are listed in the table below.
"parentheses""parentheses" Returns 1 if the cell is formatted with parentheses for positive or all values; otherwise returns 0.
"prefix""prefix" Returns the single quotation mark (') if the text in the cell is left-aligned, the double quotation mark (") if the text is right-aligned, the caret (^) if the text is centered, and an empty text ("") if the cell contains anything else.
"protect""protect" Returns 0 if the cell is not locked; returns 1 if the cell is locked.
"row""row" Returns the row number where the cell is located.
"type""type" Returns "b" for an empty cell, "l" for a text value, and "v" for any other value in the cell.
"width""width" Returns the width of the cell, rounded off to an integer.

Below you can see the text values which the function returns for the "format" argument

- - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
Number formatReturned text valueNumber formatReturned text value
GeneralGeneral G
00 F0
#,##0#,##0 ,0
0.000.00 F2
#,##0.00#,##0.00 ,2
$#,##0_);($#,##0)$#,##0_);($#,##0) C0
$#,##0_);[Red]($#,##0)$#,##0_);[Red]($#,##0) C0-
$#,##0.00_);($#,##0.00)$#,##0.00_);($#,##0.00) C2
$#,##0.00_);[Red]($#,##0.00)$#,##0.00_);[Red]($#,##0.00) C2-
0%0% P0
0.00%0.00% P2
0.00E+000.00E+00 S2
# ?/? or # ??/??# ?/? or # ??/?? G
m/d/yy or m/d/yy h:mm or mm/dd/yym/d/yy or m/d/yy h:mm or mm/dd/yy D4
d-mmm-yy or dd-mmm-yyd-mmm-yy or dd-mmm-yy D1
d-mmm or dd-mmmd-mmm or dd-mmm D2
mmm-yymmm-yy D3
mm/ddmm/dd D5
h:mm AM/PMh:mm AM/PM D7
h:mm:ss AM/PMh:mm:ss AM/PM D6
h:mmh:mm D9
h:mm:ssh:mm:ss D8
-

To apply the CELL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the CELL function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CELL Function

+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the CELL function.

+ +

Examples

+

The figure below displays the result returned by the CELL function.

+

CELL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm index 775edd6eb1..a31a961e34 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm @@ -15,25 +15,27 @@

CHAR Function

-

The CHAR function is one of the text and data functions. Is used to return the ASCII character specified by a number.

-

The CHAR function syntax is:

-

CHAR(number)

-

where number (from 1 to 255) is a data entered manually or included into the cell you make reference to.

-

To apply the CHAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the CHAR function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHAR Function

+

The CHAR function is one of the text and data functions. Is used to return the ASCII character specified by a number.

+

Syntax

+

CHAR(number)

+

The CHAR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA number between 1 and 255 specifying a character from the computer character set.
+ +

Notes

+

How to apply the CHAR function.

+ +

Examples

+

The figure below displays the result returned by the CHAR function.

+

CHAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm index 7c56a64e84..85d42d1e54 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm @@ -15,27 +15,31 @@

CHIDIST Function

-

The CHIDIST function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution.

-

The CHIDIST function syntax is:

-

CHIDIST(x, deg-freedom)

-

where

-

x is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.

-

deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the CHIDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHIDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHIDIST Function

+

The CHIDIST function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution.

+

Syntax

+

CHIDIST(x, deg_freedom)

+

The CHIDIST function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.
deg_freedomThe number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.
+ +

Notes

+

How to apply the CHIDIST function.

+ +

Examples

+

The figure below displays the result returned by the CHIDIST function.

+

CHIDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm index 8c6254256d..1cd717ecab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm @@ -15,27 +15,31 @@

CHIINV Function

-

The CHIINV function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.

-

The CHIINV function syntax is:

-

CHIINV(probability, deg-freedom)

-

where

-

probability is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.

-

deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the CHIINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHIINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHIINV Function

+

The CHIINV function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.

+

Syntax

+

CHIINV(probability, deg_freedom)

+

The CHIINV function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.
deg_freedomThe number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.
+ +

Notes

+

How to apply the CHIINV function.

+ +

Examples

+

The figure below displays the result returned by the CHIINV function.

+

CHIINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm index c6189f8d3a..7487969fe0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm @@ -15,27 +15,31 @@

CHISQ.DIST.RT Function

-

The CHISQ.DIST.RT function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution.

-

The CHISQ.DIST.RT function syntax is:

-

CHISQ.DIST.RT(x, deg-freedom)

-

where

-

x is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.

-

deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the CHISQ.DIST.RT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHISQ.DIST.RT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHISQ.DIST.RT Function

+

The CHISQ.DIST.RT function is one of the statistical functions. It is used to return the right-tailed probability of the chi-squared distribution.

+

Syntax

+

CHISQ.DIST.RT(x, deg_freedom)

+

The CHISQ.DIST.RT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.
deg_freedomThe number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.
+ +

Notes

+

How to apply the CHISQ.DIST.RT function.

+ +

Examples

+

The figure below displays the result returned by the CHISQ.DIST.RT function.

+

CHISQ.DIST.RT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm index f87c0f707c..f79d5d5902 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm @@ -15,28 +15,35 @@

CHISQ.DIST Function

-

The CHISQ.DIST function is one of the statistical functions. It is used to return the chi-squared distribution.

-

The CHISQ.DIST function syntax is:

-

CHISQ.DIST(x, deg-freedom, cumulative)

-

where

-

x is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.

-

deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the CHISQ.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHISQ.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHISQ.DIST Function

+

The CHISQ.DIST function is one of the statistical functions. It is used to return the chi-squared distribution.

+

Syntax

+

CHISQ.DIST(x, deg_freedom, cumulative)

+

The CHISQ.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.
deg_freedomThe number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+ +

Notes

+

How to apply the CHISQ.DIST function.

+ +

Examples

+

The figure below displays the result returned by the CHISQ.DIST function.

+

CHISQ.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm index adac3e3809..7a973196e9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm @@ -15,27 +15,31 @@

CHISQ.INV.RT Function

-

The CHISQ.INV.RT function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.

-

The CHISQ.INV.RT function syntax is:

-

CHISQ.INV.RT(probability, deg-freedom)

-

where

-

probability is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.

-

deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the CHISQ.INV.RT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHISQ.INV.RT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHISQ.INV.RT Function

+

The CHISQ.INV.RT function is one of the statistical functions. It is used to return the inverse of the right-tailed probability of the chi-squared distribution.

+

Syntax

+

CHISQ.INV.RT(probability, deg_freedom)

+

The CHISQ.INV.RT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.
deg_freedomThe number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.
+ +

Notes

+

How to apply the CHISQ.INV.RT function.

+ +

Examples

+

The figure below displays the result returned by the CHISQ.INV.RT function.

+

CHISQ.INV.RT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm index 62acd425e0..43fe37b3ae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm @@ -15,27 +15,31 @@

CHISQ.INV Function

-

The CHISQ.INV function is one of the statistical functions. It is used to return the inverse of the left-tailed probability of the chi-squared distribution.

-

The CHISQ.INV function syntax is:

-

CHISQ.INV(probability, deg-freedom)

-

where

-

probability is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.

-

deg-freedom is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the CHISQ.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHISQ.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHISQ.INV Function

+

The CHISQ.INV function is one of the statistical functions. It is used to return the inverse of the left-tailed probability of the chi-squared distribution.

+

Syntax

+

CHISQ.INV(probability, deg_freedom)

+

The CHISQ.INV function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.
deg_freedomThe number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.
+ +

Notes

+

How to apply the CHISQ.INV function.

+ +

Examples

+

The figure below displays the result returned by the CHISQ.INV function.

+

CHISQ.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm index f312d07f6e..b2ba9bf618 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm @@ -15,27 +15,32 @@

CHISQ.TEST Function

-

The CHISQ.TEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.

-

The CHISQ.TEST function syntax is:

-

CHISQ.TEST(actual-range, expected-range)

-

where

-

actual-range is the range of observed (actual) values.

-

expected-range is the range of expected values.

-

The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to.

-

To apply the CHISQ.TEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHISQ.TEST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHISQ.TEST Function

+

The CHISQ.TEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.

+

Syntax

+

CHISQ.TEST(actual_range, expected_range)

+

The CHISQ.TEST function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
actual_rangeThe range of observed (actual) values.
expected_rangeThe range of expected values.
+ +

Notes

+

The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5.

+

How to apply the CHISQ.TEST function.

+ +

Examples

+

The figure below displays the result returned by the CHISQ.TEST function.

+

CHISQ.TEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm index 0693690846..1eee6b796a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm @@ -15,27 +15,32 @@

CHITEST Function

-

The CHITEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.

-

The CHITEST function syntax is:

-

CHITEST(actual-range, expected-range)

-

where

-

actual-range is the range of observed (actual) values.

-

expected-range is the range of expected values.

-

The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to.

-

To apply the CHITEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CHITEST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHITEST Function

+

The CHITEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.

+

Syntax

+

CHITEST(actual_range, expected_range)

+

The CHITEST function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
actual_rangeThe range of observed (actual) values.
expected_rangeThe range of expected values.
+ +

Notes

+

The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5.

+

How to apply the CHITEST function.

+ +

Examples

+

The figure below displays the result returned by the CHITEST function.

+

CHITEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm index a4593d3e81..4298ba6b48 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm @@ -15,26 +15,31 @@

CHOOSE Function

-

The CHOOSE function is one of the lookup and reference functions. It is used to return a value from a list of values based on a specified index (position).

-

The CHOOSE function syntax is:

-

CHOOSE(index, argument-list)

-

where

-

index is the position of the value in the argument-list, a numeric value greater than or equal to 1 but less than the number of the number of values in the argument-list,

-

argument-list is the list of values or the selected range of cells you need to analyze.

-

To apply the CHOOSE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the CHOOSE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CHOOSE Function

+

The CHOOSE function is one of the lookup and reference functions. It is used to return a value from a list of values based on a specified index (position).

+

Syntax

+

CHOOSE(index_num, value1, [value2], ...)

+

The CHOOSE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
index_numThe position of the value in the list of values, a numeric value greater than or equal to 1 but less than the number of the number of values in the list of values.
value1/2/nThe list of values or the selected range of cells you need to analyze.
+ +

Notes

+

How to apply the CHOOSE function.

+ +

Examples

+

The figure below displays the result returned by the CHOOSE function.

+

CHOOSE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/choosecols.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/choosecols.htm index 2ae313beff..180bda7e41 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/choosecols.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/choosecols.htm @@ -15,29 +15,35 @@

CHOOSECOLS Function

-

The CHOOSECOLS function is one of the lookup and reference functions. It is used to return columns from an array or reference.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The CHOOSECOLS function syntax is:

-

CHOOSECOLS(array,col_num1,[col_num2],…)

-

where

-

array is used to set the array containing the columns to be returned in a new array.

-

col_num1 is used to set the first column number to be returned.

-

col_num2 is an optional argument. It is used to set additional column numbers to be returned.

-

To apply the CHOOSECOLS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the CHOOSECOLS function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The CHOOSECOLS function is one of the lookup and reference functions. It is used to return columns from an array or reference.

+

Syntax

+

CHOOSECOLS(array, col_num1, [col_num2], …)

+

The CHOOSECOLS function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayIs used to set the array containing the columns to be returned in a new array.
col_num1Is used to set the first column number to be returned.
col_num2Is an optional argument. It is used to set additional column numbers to be returned.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the CHOOSECOLS function.

+ +

Examples

+

The figure below displays the result returned by the CHOOSECOLS function.

+

CHOOSECOLS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chooserows.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chooserows.htm index 9bf208f190..622910d6ae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chooserows.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chooserows.htm @@ -15,29 +15,35 @@

CHOOSEROWS Function

-

The CHOOSEROWS function is one of the lookup and reference functions. It is used to return rows from an array or reference.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The CHOOSEROWS function syntax is:

-

CHOOSEROWS(array,row_num1,[row_num2],…)

-

where

-

array is used to set the array containing the rows to be returned in a new array.

-

row_num1 is used to set the first row number to be returned.

-

row_num2 is an optional argument. It is used to set additional row numbers to be returned.

-

To apply the CHOOSEROWS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the CHOOSEROWS function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The CHOOSEROWS function is one of the lookup and reference functions. It is used to return rows from an array or reference.

+

Syntax

+

CHOOSEROWS(array, row_num1, [row_num2], …)

+

The CHOOSEROWS function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayIs used to set the array containing the rows to be returned in a new array.
row_num1Is used to set the first row number to be returned.
row_num2Is an optional argument. It is used to set additional row numbers to be returned.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the CHOOSEROWS function.

+ +

Examples

+

The figure below displays the result returned by the CHOOSEROWS function.

+

CHOOSEROWS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm index 257c28726e..80c849225a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm @@ -15,25 +15,27 @@

CLEAN Function

-

The CLEAN function is one of the text and data functions. Is used to remove all the nonprintable characters from the selected string.

-

The CLEAN function syntax is:

-

CLEAN(string)

-

where string is a string with nonprintable characters you need to remove, data included into the cell you make reference to.

-

To apply the CLEAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the CLEAN function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CLEAN Function

+

The CLEAN function is one of the text and data functions. Is used to remove all the nonprintable characters from the selected string.

+

Syntax

+

CLEAN(text)

+

The CLEAN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textA string with nonprintable characters you need to remove, data included into the cell you make reference to.
+ +

Notes

+

How to apply the CLEAN function.

+ +

Examples

+

The figure below displays the result returned by the CLEAN function.

+

CLEAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm index 44eabba22c..0e5494cd9a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm @@ -15,26 +15,28 @@

CODE Function

-

The CODE function is one of the text and data functions. Is used to return the ASCII value of the specified character or the first character in a cell.

-

The CODE function syntax is:

-

CODE(string)

-

where string is a data entered manually or included into the cell you make reference to.

-

To apply the CODE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the CODE function,
  8. -
  9. enter the required argument, -

    Note: the CODE function is case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CODE Function

+

The CODE function is one of the text and data functions. Is used to return the ASCII value of the specified character or the first character in a cell.

+

Syntax

+

CODE(text)

+

The CODE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text for which you want to get the code of the first character.
+ +

Notes

+

The CODE function is case-sensitive.

+

How to apply the CODE function.

+ +

Examples

+

The figure below displays the result returned by the CODE function.

+

CODE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm index 2d43824707..64b8e58866 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm @@ -15,25 +15,29 @@

COLUMN Function

-

The COLUMN function is one of the lookup and reference functions. It is used to return the column number of a cell.

-

The COLUMN function syntax is:

-

COLUMN([reference])

-

where reference is a reference to a cell.

-

Note: reference is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the COLUMN function result.

-

To apply the COLUMN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the COLUMN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COLUMN Function

+

The COLUMN function is one of the lookup and reference functions. It is used to return the column number of a cell.

+

Syntax

+

COLUMN([reference])

+

The COLUMN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
referenceA reference to a cell.
+ +

Notes

+

reference is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the COLUMN function result.

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the COLUMN function.

+ +

Examples

+

The figure below displays the result returned by the COLUMN function.

+

COLUMN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm index 009734ccdc..9faa2e5933 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm @@ -15,24 +15,27 @@

COLUMNS Function

-

The COLUMNS function is one of the lookup and reference functions. It is used to return the number of columns in a cell reference.

-

The COLUMNS function syntax is:

-

COLUMNS(array)

-

where array is a reference to a range of cells.

-

To apply the COLUMNS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the COLUMNS function,
  8. -
  9. select a range of cells with the mouse or enter it manually, like this A1:B2,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COLUMNS Function

+

The COLUMNS function is one of the lookup and reference functions. It is used to return the number of columns in a cell reference.

+

Syntax

+

COLUMNS(array)

+

The COLUMNS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
arrayA reference to a range of cells.
+ +

Notes

+

How to apply the COLUMNS function.

+ +

Examples

+

The figure below displays the result returned by the COLUMNS function.

+

COLUMNS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm index 917086cded..1f0dce6bb0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm @@ -15,27 +15,31 @@

COMBIN Function

-

The COMBIN function is one of the math and trigonometry functions. It is used to return the number of combinations for a specified number of items.

-

The COMBIN function syntax is:

-

COMBIN(number, number-chosen)

-

where

-

number is a number of items, a numeric value greater than or equal to 0.

-

number-chosen is a number of items in a combination, a numeric value greater than or equal to 0 but less than number.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the COMBIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the COMBIN function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COMBIN Function

+

The COMBIN function is one of the math and trigonometry functions. It is used to return the number of combinations for a specified number of items.

+

Syntax

+

COMBIN(number, number_chosen)

+

The COMBIN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number of items, a numeric value greater than or equal to 0.
number_chosenA number of items in a combination, a numeric value greater than or equal to 0 but less than number.
+ +

Notes

+

How to apply the COMBIN function.

+ +

Examples

+

The figure below displays the result returned by the COMBIN function.

+

COMBIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm index 84f3325d75..f162df9acd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm @@ -15,27 +15,31 @@

COMBINA Function

-

The COMBINA function is one of the math and trigonometry functions. It is used to return the number of combinations (with repetitions) for a given number of items.

-

The COMBINA function syntax is:

-

COMBINA(number, number-chosen)

-

where

-

number is the total number of items, a numeric value greater than or equal to 0.

-

number-chosen is a number of items in a combination, a numeric value greater than or equal to 0 but less than number.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the COMBINA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the COMBINA function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COMBINA Function

+

The COMBINA function is one of the math and trigonometry functions. It is used to return the number of combinations (with repetitions) for a given number of items.

+

Syntax

+

COMBINA(number, number_chosen)

+

The COMBINA function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe total number of items, a numeric value greater than or equal to 0.
number_chosenA number of items in a combination, a numeric value greater than or equal to 0 but less than number.
+ +

Notes

+

How to apply the COMBINA function.

+ +

Examples

+

The figure below displays the result returned by the COMBINA function.

+

COMBINA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm index 067591e8f8..9bef05a77c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm @@ -15,28 +15,35 @@

COMPLEX Function

-

The COMPLEX function is one of the engineering functions. It is used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form.

-

The COMPLEX function syntax is:

-

COMPLEX(real-number, imaginary-number [, suffix])

-

where

-

real-number is the real part of the complex number.

-

imaginary-number is the imaginary part of the complex number.

-

suffix is an indicator of the imaginary part of the complex number. It can be either "i" or "j" in lowercase. It is an optional argument. If it is omitted, the function will assume suffix to be "i".

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COMPLEX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the COMPLEX function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COMPLEX Function

+

The COMPLEX function is one of the engineering functions. It is used to convert a real part and an imaginary part into the complex number expressed in a + bi or a + bj form.

+

Syntax

+

COMPLEX(real_num, i_num, [suffix])

+

The COMPLEX function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
real_numThe real part of the complex number.
i_numThe imaginary part of the complex number.
suffixAn indicator of the imaginary part of the complex number. It can be either "i" or "j" in lowercase. It is an optional argument. If it is omitted, the function will assume suffix to be "i".
+ +

Notes

+

How to apply the COMPLEX function.

+ +

Examples

+

The figure below displays the result returned by the COMPLEX function.

+

COMPLEX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm index 327e9f3b19..beb5fa8ed8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm @@ -15,26 +15,27 @@

CONCAT Function

-

The CONCAT function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. This function replaces the CONCATENATE function.

-

The CONCAT function syntax is:

-

CONCAT(text1, text2, ...)

-

where text1(2) is up to 265 data values entered manually or included into the cells you make reference to.

-

To apply the CONCAT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the CONCAT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

+

The CONCAT function is one of the text and data functions. Is used to combine the data from two or more cells into a single one. This function replaces the CONCATENATE function.

+

Syntax

+

CONCAT(text1, [text2], ...)

+

The CONCAT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
text1/2/nUp to 255 data values that you want to combine.
+ +

Notes

+

How to apply the CONCAT function.

+ +

Examples

There are three arguments: text1 = A1 (John), text2 = " " (space), text3 = B1 (Adams). So the function will combine the first name, the space and the last name into one cell and return the result John Adams.

-

CONCAT Function

+

CONCAT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm index 0e30ab77c5..76688ae7d7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm @@ -15,26 +15,27 @@

CONCATENATE Function

-

The CONCATENATE function is one of the text and data functions. Is used to combine the data from two or more cells into a single one.

-

The CONCATENATE function syntax is:

-

CONCATENATE(text1, text2, ...)

-

where text1(2) is up to 265 data values entered manually or included into the cells you make reference to.

-

To apply the CONCATENATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the CONCATENATE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

+

The CONCATENATE function is one of the text and data functions. Is used to combine the data from two or more cells into a single one.

+

Syntax

+

CONCATENATE(text1, [text2], ...)

+

The CONCATENATE function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
text1/2/nUp to 255 data values that you want to combine.
+ +

Notes

+

How to apply the CONCATENATE function.

+ +

Examples

There are three arguments: text1 = A1 (John), text2 = " " (space), text3 = B1 (Adams). So the function will combine the first name, the space and the last name into one cell and return the result John Adams.

-

CONCATENATE Function

+

CONCATENATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm index 17751417a3..44cbc00cc9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm @@ -15,28 +15,35 @@

CONFIDENCE.NORM Function

-

The CONFIDENCE.NORM function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a normal distribution.

-

The CONFIDENCE.NORM function syntax is:

-

CONFIDENCE.NORM(alpha, standard-dev, size)

-

where

-

alpha is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.

-

standard-dev is the population standard deviation, a numeric value greater than 0.

-

size is the sample size, a numeric value greater than or equal to 1.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the CONFIDENCE.NORM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CONFIDENCE.NORM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CONFIDENCE.NORM Function

+

The CONFIDENCE.NORM function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a normal distribution.

+

Syntax

+

CONFIDENCE.NORM(alpha, standard_dev, size)

+

The CONFIDENCE.NORM function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
alphaThe significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.
standard_devThe population standard deviation, a numeric value greater than 0.
sizeThe sample size, a numeric value greater than or equal to 1.
+ +

Notes

+

How to apply the CONFIDENCE.NORM function.

+ +

Examples

+

The figure below displays the result returned by the CONFIDENCE.NORM function.

+

CONFIDENCE.NORM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm index b375f1041d..2aa7202488 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm @@ -15,28 +15,35 @@

CONFIDENCE.T Function

-

The CONFIDENCE.T function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a Student's t distribution.

-

The CONFIDENCE.T function syntax is:

-

CONFIDENCE.T(alpha, standard-dev, size)

-

where

-

alpha is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.

-

standard-dev is the population standard deviation, a numeric value greater than 0.

-

size is the sample size, a numeric value greater than 1.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the CONFIDENCE.T function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CONFIDENCE.T function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CONFIDENCE.T Function

+

The CONFIDENCE.T function is one of the statistical functions. It is used to return the confidence interval for a population mean, using a Student's t distribution.

+

Syntax

+

CONFIDENCE.T(alpha, standard_dev, size)

+

The CONFIDENCE.T function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
alphaThe significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.
standard_devThe population standard deviation, a numeric value greater than 0.
sizeThe sample size, a numeric value greater than or equal to 1.
+ +

Notes

+

How to apply the CONFIDENCE.T function.

+ +

Examples

+

The figure below displays the result returned by the CONFIDENCE.T function.

+

CONFIDENCE.T Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm index 885c27e4ce..e963b2989a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm @@ -15,28 +15,35 @@

CONFIDENCE Function

-

The CONFIDENCE function is one of the statistical functions. It is used to return the confidence interval.

-

The CONFIDENCE function syntax is:

-

CONFIDENCE(alpha, standard-dev, size)

-

where

-

alpha is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.

-

standard-dev is the population standard deviation, a numeric value greater than 0.

-

size is the sample size, a numeric value greater than or equal to 1.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the CONFIDENCE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CONFIDENCE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CONFIDENCE Function

+

The CONFIDENCE function is one of the statistical functions. It is used to return the confidence interval.

+

Syntax

+

CONFIDENCE(alpha, standard_dev, size)

+

The CONFIDENCE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
alphaThe significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.
standard_devThe population standard deviation, a numeric value greater than 0.
sizeThe sample size, a numeric value greater than or equal to 1.
+ +

Notes

+

How to apply the CONFIDENCE function.

+ +

Examples

+

The figure below displays the result returned by the CONFIDENCE function.

+

CONFIDENCE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/convert.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/convert.htm index fef38f99f6..0615e1723d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/convert.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/convert.htm @@ -15,19 +15,33 @@

CONVERT Function

-

The CONVERT function is one of the engineering functions. It is used to convert a number from one measurement system to another. For example, CONVERT can translate a table of distances in miles to a table of distances in kilometers.

-

The CONVERT function syntax is:

-

CONVERT(number, from_unit, to_unit)

-

where

-

number is the value to be converted,

-

from_unit is the original measurement unit. A text string enclosed in quotes. The possible values are listed in the table below.

-

to_unit is the measurement unit that the number should be converted to. A text string enclosed in quotes. The possible values are listed in the table below.

-

Note: the from_unit and to_unit must be compatible, i.e. they should belong to the same measurement type.

+

The CONVERT function is one of the engineering functions. It is used to convert a number from one measurement system to another. For example, CONVERT can translate a table of distances in miles to a table of distances in kilometers.

+

Syntax

+

CONVERT(number, from_unit, to_unit)

+

The CONVERT function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberThe value to be converted.
from_unitThe original measurement unit. A text string enclosed in quotes. The possible values are listed in the table below.
to_unitThe measurement unit that the number should be converted to. A text string enclosed in quotes. The possible values are listed in the table below.

Weight and mass

- - + + @@ -77,8 +91,8 @@

Distance

UnitText valueUnitText value
Gram
- - + + @@ -136,8 +150,8 @@

Time

UnitText valueUnitText value
Meter
- - + + @@ -163,8 +177,8 @@

Pressure

UnitText valueUnitText value
Year
- - + + @@ -190,8 +204,8 @@

Force

UnitText valueUnitText value
Pascal
- - + + @@ -213,8 +227,8 @@

Energy

UnitText valueUnitText value
Newton
- - + + @@ -256,8 +270,8 @@

Power

UnitText valueUnitText value
Joule
- - + + @@ -275,8 +289,8 @@

Magnetism

UnitText valueUnitText value
Horsepower
- - + + @@ -290,8 +304,8 @@

Temperature

UnitText valueUnitText value
Tesla
- - + + @@ -317,8 +331,8 @@

Volume (or l iquid measure )

UnitText valueUnitText value
Degree Celsius
- - + + @@ -424,8 +438,8 @@

Area

UnitText valueUnitText value
Teaspoon
- - + + @@ -487,8 +501,8 @@

Information

UnitText valueUnitText value
International acre
- - + + @@ -502,8 +516,8 @@

Speed

UnitText valueUnitText value
Bit
- - + + @@ -530,9 +544,9 @@

Prefixes

UnitText valueUnitText value
Admiralty knot
- - - + + + @@ -638,9 +652,9 @@

Binary Prefixes

PrefixMultiplierText valuePrefixMultiplierText value
yotta
- - - + + + @@ -683,21 +697,13 @@
PrefixPrefix valueText valuePrefixPrefix valueText value
yobi"ki"
-

To apply the CONVERT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the CONVERT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CONVERT Function

+

Notes

+

The from_unit and to_unit arguments must be compatible, i.e. they should belong to the same measurement type.

+

How to apply the CONVERT function.

+ +

Examples

+

The figure below displays the result returned by the CONVERT function.

+

CONVERT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm index 8e97921e39..4eade549b0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm @@ -15,25 +15,28 @@

CORREL Function

-

The CORREL function is one of the statistical functions. It is used to analyze the range of data and return the correlation coefficient of two range of cells.

-

The CORREL function syntax is:

-

CORREL(array-1, array-2)

-

where array-1(2) is the selected range of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the CORREL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CORREL function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CORREL Function

+

The CORREL function is one of the statistical functions. It is used to analyze the range of data and return the correlation coefficient of two range of cells.

+

Syntax

+

CORREL(array1, array2)

+

The CORREL function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
array1/2The selected ranges of cells with the same number of elements.
+ +

Notes

+

If array1/2 contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the CORREL function.

+ +

Examples

+

The figure below displays the result returned by the CORREL function.

+

CORREL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm index ac0b98113f..f4fc756673 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm @@ -15,24 +15,27 @@

COS Function

-

The COS function is one of the math and trigonometry functions. It is used to return the cosine of an angle.

-

The COS function syntax is:

-

COS(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the COS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the COS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COS Function

+

The COS function is one of the math and trigonometry functions. It is used to return the cosine of an angle.

+

Syntax

+

COS(number)

+

The COS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the cosine.
+ +

Notes

+

How to apply the COS function.

+ +

Examples

+

The figure below displays the result returned by the COS function.

+

COS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm index 165101d22b..23231fe2af 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm @@ -15,24 +15,27 @@

COSH Function

-

The COSH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosine of a number.

-

The COSH function syntax is:

-

COSH(x)

-

where x is any numeric value entered manually or included into the cell you make reference to.

-

To apply the COSH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the COSH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COSH Function

+

The COSH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosine of a number.

+

Syntax

+

COSH(number)

+

The COSH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the hyperbolic cosine.
+ +

Notes

+

How to apply the COSH function.

+ +

Examples

+

The figure below displays the result returned by the COSH function.

+

COSH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm index 012a7c28be..bb4cbc1f75 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm @@ -15,24 +15,27 @@

COT Function

-

The COT function is one of the math and trigonometry functions. It is used to return the cotangent of an angle specified in radians.

-

The COT function syntax is:

-

COT(x)

-

where x is the angle in radians that you wish to calculate the cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.

-

To apply the COT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the COT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COT Function

+

The COT function is one of the math and trigonometry functions. It is used to return the cotangent of an angle specified in radians.

+

Syntax

+

COT(number)

+

The COT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.
+ +

Notes

+

How to apply the COT function.

+ +

Examples

+

The figure below displays the result returned by the COT function.

+

COT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm index 6c76d31c0e..7f09d727ac 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm @@ -15,24 +15,27 @@

COTH Function

-

The COTH function is one of the math and trigonometry functions. It is used to return the hyperbolic cotangent of a hyperbolic angle.

-

The COTH function syntax is:

-

COTH(x)

-

where x is the angle in radians that you wish to calculate the hyperbolic cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.

-

To apply the COTH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the COTH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COTH Function

+

The COTH function is one of the math and trigonometry functions. It is used to return the hyperbolic cotangent of a hyperbolic angle.

+

Syntax

+

COTH(number)

+

The COTH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the hyperbolic cotangent of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.
+ +

Notes

+

How to apply the COTH function.

+ +

Examples

+

The figure below displays the result returned by the COTH function.

+

COTH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm index 7fe81bf738..18418ed973 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm @@ -15,24 +15,31 @@

COUNT Function

-

The COUNT function is one of the statistical functions. It is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text.

-

The COUNT function syntax is:

-

COUNT(argument-list)

-

where argument-list is a range of cells you wish to count.

-

To apply the COUNT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COUNT function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUNT Function

+

The COUNT function is one of the statistical functions. It is used to count the number of the selected cells which contain numbers ignoring empty cells or those contaning text.

+

Syntax

+

COUNT(value1, [value2], ...)

+

The COUNT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
value1The first value you wish to count.
value2/nAdditional values you wish to count.
+ +

Notes

+

How to apply the COUNT function.

+ +

Examples

+

The figure below displays the result returned by the COUNT function.

+

COUNT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm index e384ab7e7e..e1c3b60866 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm @@ -15,24 +15,31 @@

COUNTA Function

-

The COUNTA function is one of the statistical functions. It is used to analyze the range of cells and count the number of cells that are not empty.

-

The COUNTA function syntax is:

-

COUNTA(argument-list)

-

where argument-list is a range of cells you wish to count.

-

To apply the COUNTA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COUNTA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUNTA Function

+

The COUNTA function is one of the statistical functions. It is used to analyze the range of cells and count the number of cells that are not empty.

+

Syntax

+

COUNTA(value1, [value2], ...)

+

The COUNTA function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
value1The first value you wish to count.
value2/nAdditional values you wish to count.
+ +

Notes

+

How to apply the COUNTA function.

+ +

Examples

+

The figure below displays the result returned by the COUNTA function.

+

COUNTA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm index b9620ee21c..9011ff7f8c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm @@ -15,24 +15,26 @@

COUNTBLANK Function

-

The COUNTBLANK function is one of the statistical functions. It is used to analyze the range of cells and return the number of the empty cells.

-

The COUNTBLANK function syntax is:

-

COUNTBLANK(argument-list)

-

where argument-list is a range of cells you wish to count.

-

To apply the COUNTBLANK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COUNTBLANK function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUNTBLANK Function

+

The COUNTBLANK function is one of the statistical functions. It is used to analyze the range of cells and return the number of the empty cells.

+

Syntax

+

COUNTBLANK(range)

+

The COUNTBLANK function has the following argument:

+ + + + + + + + + +
ArgumentDescription
rangeA range of cells you wish to count.
+

Notes

+

How to apply the COUNTBLANK function.

+ +

Examples

+

The figure below displays the result returned by the COUNTBLANK function.

+

COUNTBLANK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm index af21d6e63a..f3d9c2c648 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm @@ -15,27 +15,32 @@

COUNTIF Function

-

The COUNTIF function is one of the statistical functions. It is used to count the number of the selected cells based on the specified criterion.

-

The COUNTIF function syntax is:

-

COUNTIF(cell-range, selection-criteria)

-

where

-

cell-range is the selected range of cells you wish to count applying the specified criterion,

-

selection-criteria is a criterion you wish to apply entered manually or included into the cell you make reference to.

-

Note: selection-criteria can include the wildcard characters — the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.

-

To apply the COUNTIF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COUNTIF function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUNTIF Function

+

The COUNTIF function is one of the statistical functions. It is used to count the number of the selected cells based on the specified criterion.

+

Syntax

+

COUNTIF(range, criteria)

+

The COUNTIF function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
rangeThe selected range of cells you wish to count applying the specified criterion.
criteriaA criterion you wish to apply.
+ +

Notes

+

The criteria argument can include the wildcard characters — the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.

+

How to apply the COUNTIF function.

+ +

Examples

+

The figure below displays the result returned by the COUNTIF function.

+

COUNTIF Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm index 3986d9726c..494de82ec4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm @@ -15,29 +15,36 @@

COUNTIFS Function

-

The COUNTIFS function is one of the statistical functions. It is used to count the number of the selected cells based on multiple criteria.

-

The COUNTIFS function syntax is:

-

COUNTIFS(criteria-range-1, criteria-1, [criteria-range-2, criteria-2], ...)

-

where

-

criteria-range-1 is the first selected range of cells to apply the criteria-1 to. It is a required argument.

-

criteria-1 is the first condition that must be met. It is applied to the criteria-range-1 and used to determine the cells in the criteria-range-1 to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument.

-

criteria-range-2, criteria-2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.

-

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.

-

How to use COUNTIFS

-

To apply the COUNTIFS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COUNTIFS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUNTIFS Function

+

The COUNTIFS function is one of the statistical functions. It is used to count the number of the selected cells based on multiple criteria.

+

Syntax

+

COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]...)

+

The COUNTIFS function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
criteria_range1The first selected range of cells to apply the criteria1 to. It is a required argument.
criteria1The first condition that must be met. It is applied to the criteria_range1 and used to determine the cells in the criteria_range1 to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument.
criteria_range2, criteria2Additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.
+ +

Notes

+

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.

+

How to apply the COUNTIFS function.

+ +

Examples

+

The figure below displays the result returned by the COUNTIFS function.

+

COUNTIFS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm index 0f8075141f..3d8e11fd82 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm @@ -15,56 +15,68 @@

COUPDAYBS Function

-

The COUPDAYBS function is one of the financial functions. It is used to calculate the number of days from the beginning of the coupon period to the settlement date.

-

The COUPDAYBS function syntax is:

-

COUPDAYBS(settlement, maturity, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The COUPDAYBS function is one of the financial functions. It is used to calculate the number of days from the beginning of the coupon period to the settlement date.

+

Syntax

+

COUPDAYBS(settlement, maturity, frequency, [basis])

+

The COUPDAYBS function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COUPDAYBS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the COUPDAYBS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUPDAYBS Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the COUPDAYBS function.

+ +

Examples

+

The figure below displays the result returned by the COUPDAYBS function.

+

COUPDAYBS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm index 106d91de21..a9bc0471b6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm @@ -15,56 +15,68 @@

COUPDAYS Function

-

The COUPDAYS function is one of the financial functions. It is used to calculate the number of days in the coupon period that contains the settlement date.

-

The COUPDAYS function syntax is:

-

COUPDAYS(settlement, maturity, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The COUPDAYS function is one of the financial functions. It is used to calculate the number of days in the coupon period that contains the settlement date.

+

Syntax

+

COUPDAYS(settlement, maturity, frequency, [basis])

+

The COUPDAYS function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COUPDAYS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the COUPDAYS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUPDAYS Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the COUPDAYS function.

+ +

Examples

+

The figure below displays the result returned by the COUPDAYS function.

+

COUPDAYS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm index 804f662429..c5cd151164 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm @@ -15,56 +15,68 @@

COUPDAYSNC Function

-

The COUPDAYSNC function is one of the financial functions. It is used to calculate the number of days from the settlement date to the next coupon payment.

-

The COUPDAYSNC function syntax is:

-

COUPDAYSNC(settlement, maturity, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The COUPDAYSNC function is one of the financial functions. It is used to calculate the number of days from the settlement date to the next coupon payment.

+

Syntax

+

COUPDAYSNC(settlement, maturity, frequency, [basis])

+

The COUPDAYSNC function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COUPDAYSNC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the COUPDAYSNC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUPDAYSNC Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the COUPDAYSNC function.

+ +

Examples

+

The figure below displays the result returned by the COUPDAYSNC function.

+

COUPDAYSNC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm index d3a3749bd3..7c4098dc53 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm @@ -15,56 +15,68 @@

COUPNCD Function

-

The COUPNCD function is one of the financial functions. It is used to calculate the next coupon date after the settlement date.

-

The COUPNCD function syntax is:

-

COUPNCD(settlement, maturity, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The COUPNCD function is one of the financial functions. It is used to calculate the next coupon date after the settlement date.

+

Syntax

+

COUPNCD(settlement, maturity, frequency, [basis])

+

The COUPNCD function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COUPNCD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the COUPNCD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUPNCD Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the COUPNCD function.

+ +

Examples

+

The figure below displays the result returned by the COUPNCD function.

+

COUPNCD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm index c42d341d18..c0d06a1556 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm @@ -15,56 +15,68 @@

COUPNUM Function

-

The COUPNUM function is one of the financial functions. It is used to calculate the number of coupons between the settlement date and the maturity date.

-

The COUPNUM function syntax is:

-

COUPNUM(settlement, maturity, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The COUPNUM function is one of the financial functions. It is used to calculate the number of coupons between the settlement date and the maturity date.

+

Syntax

+

COUPNUM(settlement, maturity, frequency, [basis])

+

The COUPNUM function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COUPNUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the COUPNUM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUPNUM Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the COUPNUM function.

+ +

Examples

+

The figure below displays the result returned by the COUPNUM function.

+

COUPNUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm index 8c547298ea..49e937e109 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm @@ -15,56 +15,67 @@

COUPPCD Function

-

The COUPPCD function is one of the financial functions. It is used to calculate the previous coupon date before the settlement date.

-

The COUPPCD function syntax is:

-

COUPPCD(settlement, maturity, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The COUPPCD function is one of the financial functions. It is used to calculate the previous coupon date before the settlement date.

+

Syntax

+

COUPPCD(settlement, maturity, frequency, [basis])

+

The COUPPCD function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the COUPPCD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the COUPPCD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COUPPCD Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the COUPPCD function.

+ +

Examples

+

The figure below displays the result returned by the COUPPCD function.

+

COUPPCD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm index 733f85ff73..43e9ddd163 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm @@ -15,25 +15,27 @@

COVAR Function

-

The COVAR function is one of the statistical functions. It is used to return the covariance of two ranges of data.

-

The COVAR function syntax is:

-

COVAR(array-1, array-2)

-

where array-1(2) is the selected range of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the COVAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COVAR function,
  8. -
  9. enter the required arguments manually or select them with the mouse separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COVAR Function

+

The COVAR function is one of the statistical functions. It is used to return the covariance of two ranges of data.

+

Syntax

+

COVAR(array1, array2)

+

The COVAR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
array1(2)The selected ranges of cells with the same number of elements.
+

Notes

+

If array1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the COVAR function.

+ +

Examples

+

The figure below displays the result returned by the COVAR function.

+

COVAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm index 3b84dd19e9..155bc1dbf2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm @@ -15,25 +15,27 @@

COVARIANCE.P Function

-

The COVARIANCE.P function is one of the statistical functions. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets.

-

The COVARIANCE.P function syntax is:

-

COVARIANCE.P(array-1, array-2)

-

where array-1(2) is the selected range of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the COVARIANCE.P function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COVARIANCE.P function,
  8. -
  9. enter the required arguments manually or select them with the mouse separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COVARIANCE.P Function

+

The COVARIANCE.P function is one of the statistical functions. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets.

+

Syntax

+

COVARIANCE.P(array1, array2)

+

The COVARIANCE.P function has the following argument:

+ + + + + + + + + +
ArgumentDescription
array1(2)The selected ranges of cells with the same number of elements.
+

Notes

+

If array1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the COVARIANCE.P function.

+ +

Examples

+

The figure below displays the result returned by the COVARIANCE.P function.

+

COVARIANCE.P Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm index 55153e99af..3f1827cc7b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm @@ -15,25 +15,27 @@

COVARIANCE.S Function

-

The COVARIANCE.S function is one of the statistical functions. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets.

-

The COVARIANCE.S function syntax is:

-

COVARIANCE.S(array-1, array-2)

-

where array-1(2) is the selected range of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the COVARIANCE.S function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the COVARIANCE.S function,
  8. -
  9. enter the required arguments manually or select them with the mouse separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

COVARIANCE.S Function

+

The COVARIANCE.S function is one of the statistical functions. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets.

+

Syntax

+

COVARIANCE.S(array1, array2)

+

The COVARIANCE.S function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
array1(2)The selected ranges of cells with the same number of elements.
+

Notes

+

If array1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the COVARIANCE.S function.

+ +

Examples

+

The figure below displays the result returned by the COVARIANCE.S function.

+

COVARIANCE.S Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm index 596be7ab4d..3dd94b7f68 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm @@ -15,28 +15,35 @@

CRITBINOM Function

-

The CRITBINOM function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value.

-

The CRITBINOM function syntax is:

-

CRITBINOM(number-trials, success-probability, alpha)

-

where

-

number-trials is the number of trials, a numeric value greater than or equal to 0.

-

success-probability is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.

-

alpha is the criterion, a numeric value greater than or equal to 0 but less than or equal to 1.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the CRITBINOM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the CRITBINOM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CRITBINOM Function

+

The CRITBINOM function is one of the statistical functions. It is used to return the smallest value for which the cumulative binomial distribution is greater than or equal to the specified alpha value.

+

Syntax

+

CRITBINOM(trials, probability_s, alpha)

+

The CRITBINOM function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
trialsThe number of trials, a numeric value greater than or equal to 0.
probability_sThe success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.
alphaThe criterion, a numeric value greater than or equal to 0 but less than or equal to 1.
+ +

Notes

+

How to apply the CRITBINOM function.

+ +

Examples

+

The figure below displays the result returned by the CRITBINOM function.

+

CRITBINOM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm index 708ab64591..908a9484c9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm @@ -15,24 +15,27 @@

CSC Function

-

The CSC function is one of the math and trigonometry functions. It is used to return the cosecant of an angle specified in radians.

-

The CSC function syntax is:

-

CSC(x)

-

where x is the angle in radians that you wish to calculate the cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.

-

To apply the CSC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the CSC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CSC Function

+

The CSC function is one of the math and trigonometry functions. It is used to return the cosecant of an angle specified in radians.

+

Syntax

+

CSC(number)

+

The CSC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.
+ +

Notes

+

How to apply the CSC function.

+ +

Examples

+

The figure below displays the result returned by the CSC function.

+

CSC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm index 5706d16ad2..a5ecc5d5bd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm @@ -15,24 +15,26 @@

CSCH Function

-

The CSCH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosecant of an angle specified in radians.

-

The CSCH function syntax is:

-

CSCH(x)

-

where x is the angle in radians that you wish to calculate the hyperbolic cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.

-

To apply the CSCH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the CSCH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CSCH Function

+

The CSCH function is one of the math and trigonometry functions. It is used to return the hyperbolic cosecant of an angle specified in radians.

+

Syntax

+

CSCH(number)

+

The CSCH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the hyperbolic cosecant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.
+

Notes

+

How to apply the CSCH function.

+ +

Examples

+

The figure below displays the result returned by the CSCH function.

+

CSCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm index c7ef5d5d35..fba75d6f1e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm @@ -15,32 +15,48 @@

CUMIPMT Function

-

The CUMIPMT function is one of the financial functions. It is used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule.

-

The CUMIPMT function syntax is:

-

CUMIPMT(rate, nper, pv, start_period, end_period, type)

-

where

-

rate is the interest rate for the investment.

-

nper is a number of payments.

-

pv is a present value of the payments.

-

start_period is the first period included into the calculation. The value must be from 1 to nper.

-

end_period is the last period included into the calculation. The value must be from 1 to nper.

-

type is a period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the CUMIPMT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the CUMIPMT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CUMIPMT Function

+

The CUMIPMT function is one of the financial functions. It is used to calculate the cumulative interest paid on an investment between two periods based on a specified interest rate and a constant payment schedule.

+

Syntax

+

CUMIPMT(rate, nper, pv, start_period, end_period, type)

+

The CUMIPMT function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate for the investment.
nperA number of payments.
pvA present value of the payments.
start_periodThe first period included into the calculation. The value must be from 1 to nper.
end_periodThe last period included into the calculation. The value must be from 1 to nper.
typeA period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the CUMIPMT function.

+ +

Examples

+

The figure below displays the result returned by the CUMIPMT function.

+

CUMIPMT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm index 4e9cb5bfac..5023a006f0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm @@ -15,32 +15,48 @@

CUMPRINC Function

-

The CUMPRINC function is one of the financial functions. It is used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule.

-

The CUMPRINC function syntax is:

-

CUMPRINC(rate, nper, pv, start_period, end_period, type)

-

where

-

rate is the interest rate for the investment.

-

nper is a number of payments.

-

pv is a present value of the payments.

-

start_period is the first period included into the calculation. The value must be from 1 to nper.

-

end_period is the last period included into the calculation. The value must be from 1 to nper.

-

type is a period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the CUMPRINC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the CUMPRINC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

CUMPRINC Function

+

The CUMPRINC function is one of the financial functions. It is used to calculate the cumulative principal paid on an investment between two periods based on a specified interest rate and a constant payment schedule.

+

Syntax

+

CUMPRINC(rate, nper, pv, start_period, end_period, type)

+

The CUMPRINC function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate for the investment.
nperA number of payments.
pvA present value of the payments.
start_periodThe first period included into the calculation. The value must be from 1 to nper.
end_periodThe last period included into the calculation. The value must be from 1 to nper.
typeA period when the payments are due. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the CUMPRINC function.

+ +

Examples

+

The figure below displays the result returned by the CUMPRINC function.

+

CUMPRINC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm index 402de18f33..827a6f9041 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm @@ -15,24 +15,35 @@

DATE Function

-

The DATE function is one of the date and time functions. It is used to add dates in the default format MM/dd/yyyy.

-

The DATE function syntax is:

-

DATE(year, month, day)

-

where year, month, day are values entered manually or included into the cell you make reference to.

-

To apply the DATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the DATE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DATE Function

+

The DATE function is one of the date and time functions. It is used to add dates in the default format MM/dd/yyyy.

+

Syntax

+

DATE(year, month, day)

+

The DATE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
yearA numeric value representing the year (four digits).
monthA numeric value representing the month (from 1 to 12).
dayA numeric value representing the day (from 1 to 31).
+ +

Notes

+

How to apply the DATE function.

+ +

Examples

+

The figure below displays the result returned by the DATE function.

+

DATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm index b18ef4490b..b28bb34cfa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm @@ -15,56 +15,65 @@

DATEDIF Function

-

The DATEDIF function is one of the date and time functions. It is used to return the difference between two date values (start date and end date), based on the interval (unit) specified.

-

The DATEDIF function syntax is:

-

DATEDIF(start-date, end-date, unit)

-

where

-

start-date and end-date are two dates you wish to calculate the difference between.

-

unit is the specified interval that can be one of the following:

- +

The DATEDIF function is one of the date and time functions. It is used to return the difference between two date values (start date and end date), based on the interval (unit) specified.

+

Syntax

+

DATEDIF(start_date, end_date, unit)

+

The DATEDIF function has the following arguments:

+
+ + + + + + + + + + + + + + + + +
ArgumentDescription
start_dateThe starting date of a period.
end_dateThe ending date of a period.
unitThe specified interval. The possible values are listed in the table below.
+

The unit argument can be one of the following:

+ - - + + - + - + - + - + - + - +
UnitInterval ExplanationUnitInterval Explanation
YY The number of complete years.
MM The number of complete months.
DD The number of days.
MDMD The difference between the days (months and years are ignored).
YMYM The difference between the months (days and years are ignored).
YDYD The difference between the days (years are ignored).
-

To apply the DATEDIF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the DATEDIF function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DATEDIF Function

+

Notes

+

If the start_date is greater than the end_date, the result will be #NUM!.

+

How to apply the DATEDIF function.

+

Examples

+

There are three arguments: start-date = A1 = 3/16/2018; end-date = A2 = 9/16/2018; unit = "D". So the function returns the difference between two dates in days.

+

DATEDIF Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm index bbe6f4d22f..bbcbd4d9ba 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm @@ -15,24 +15,27 @@

DATEVALUE Function

-

The DATEVALUE function is one of the date and time functions. It is used to return a serial number of the specified date.

-

The DATEVALUE function syntax is:

-

DATEVALUE(date-time-string)

-

where date-time-string is a date from January 1, 1900, to December 31, 9999, entered manually or included into the cell you make reference to.

-

To apply the DATEVALUE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the DATEVALUE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DATEVALUE Function

+

The DATEVALUE function is one of the date and time functions. It is used to return a serial number of the specified date.

+

Syntax

+

DATEVALUE(date_text)

+

The DATEVALUE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
date_textA date from January 1, 1900, to December 31, 9999.
+ +

Notes

+

How to apply the DATEVALUE function.

+ +

Examples

+

The figure below displays the result returned by the DATEVALUE function.

+

DATEVALUE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm index 674d216019..15b0a805b6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm @@ -15,28 +15,35 @@

DAVERAGE Function

-

The DAVERAGE function is one of the database functions. It is used to average the values in a field (column) of records in a list or database that match conditions you specify.

-

The DAVERAGE function syntax is:

-

DAVERAGE(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DAVERAGE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DAVERAGE function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DAVERAGE Function

+

The DAVERAGE function is one of the database functions. It is used to average the values in a field (column) of records in a list or database that match conditions you specify.

+

Syntax

+

DAVERAGE(database, field, criteria)

+

The DAVERAGE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+ +

Notes

+

How to apply the DAVERAGE function.

+ +

Examples

+

The figure below displays the result returned by the DAVERAGE function.

+

DAVERAGE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm index f51990cf17..85b68a2a76 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm @@ -15,24 +15,26 @@

DAY Function

-

The DAY function is one of the date and time functions. It returns the day (a number from 1 to 31) of the date given in the numerical format (MM/dd/yyyy by default).

-

The DAY function syntax is:

-

DAY(date-value)

-

where date-value is a value entered manually or included into the cell you make reference to.

-

To apply the DAY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the DAY function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DAY Function

+

The DAY function is one of the date and time functions. It returns the day (a number from 1 to 31) of the date given in the numerical format (MM/dd/yyyy by default).

+

Syntax

+

DAY(serial_number)

+

The DAY function has the following argument:

+ + + + + + + + + +
ArgumentDescription
serial_numberThe date of the day you want to find.
+

Notes

+

How to apply the DAY function.

+ +

Examples

+

The figure below displays the result returned by the DAY function.

+

DAY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm index 5b71d5b82b..5e9d0655a2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm @@ -15,25 +15,30 @@

DAYS Function

-

The DAYS function is one of the date and time functions. Is used to return the number of days between two dates.

-

The DAYS function syntax is:

-

DAYS(end-date, start-date)

-

where

-

end-date and start-date are two dates you wish to calculate the number of days between.

-

To apply the DAYS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the DAYS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DAYS Function

+

The DAYS function is one of the date and time functions. Is used to return the number of days between two dates.

+

Syntax

+

DAYS(end_date, start_date)

+

The DAYS function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
end_dateend_date and start_date are two dates you wish to calculate the number of days between.
start_dateend_date and start_date are two dates you wish to calculate the number of days between.
+

Notes

+

How to apply the DAYS function.

+ +

Examples

+

The figure below displays the result returned by the DAYS function.

+

DAYS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm index 3fa4315b88..f071a42c05 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm @@ -15,28 +15,35 @@

DAYS360 Function

-

The DAYS360 function is one of the date and time functions. Is used to return the number of days between two dates (start-date and end-date) based on a 360-day year using one of the calculation method (US or European).

-

The DAYS360 function syntax is:

-

DAYS360(start-date, end-date [,method-flag])

-

where

-

start-date and end-date are two dates you wish to calculate the number of days between.

-

method-flag is an optional logical value: TRUE or FALSE. If it is set to TRUE, the calculation will be performed using the European method, according to which the start and end dates that occur on the 31st of a month become equal to the 30th of the same month.
- If it is FALSE or omitted, the calculation will be performed using the US method, according to which if the start date is the last day of a month, it becomes equal to the 30th of the same month. If the end date is the last day of a month and the start date is earlier than the 30th of a month, the end date becomes equal to the 1st of the next month. Otherwise the end date becomes equal to the 30th of the same month. -

-

To apply the DAYS360 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the DAYS360 function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DAYS360 Function

+

The DAYS360 function is one of the date and time functions. Is used to return the number of days between two dates (start-date and end-date) based on a 360-day year using one of the calculation method (US or European).

+

Syntax

+

DAYS360(start_date, end_date, [method])

+

The DAYS360 function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
start_datestart_date and end_date are two dates you wish to calculate the number of days between.
end_datestart_date and end_date are two dates you wish to calculate the number of days between.
methodAn optional logical value: TRUE or FALSE. If it is set to TRUE, the calculation will be performed using the European method, according to which the start and end dates that occur on the 31st of a month become equal to the 30th of the same month.
+ If it is FALSE or omitted, the calculation will be performed using the US method, according to which if the start date is the last day of a month, it becomes equal to the 30th of the same month. If the end date is the last day of a month and the start date is earlier than the 30th of a month, the end date becomes equal to the 1st of the next month. Otherwise the end date becomes equal to the 30th of the same month.
+

Notes

+

How to apply the DAYS360 function.

+ +

Examples

+

The figure below displays the result returned by the DAYS360 function.

+

DAYS360 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm index de18d72789..0d196f2451 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm @@ -15,31 +15,43 @@

DB Function

-

The DB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the fixed-declining balance method.

-

The DB function syntax is:

-

DB(cost, salvage, life, period[, [month]])

-

where

-

cost is the cost of the asset.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

life is the total number of the periods within the asset lifetime.

-

period is the period you wish to calculate depreciation for. The value must be expressed in the same units as life.

-

month is the number of months in the first year. It is an optional argument. If it is omitted, the function will assume month to be 12.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the DB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the DB function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DB Function

+

The DB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the fixed-declining balance method.

+

Syntax

+

DB(cost, salvage, life, period, [month])

+

The DB function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
costThe cost of the asset.
salvageThe salvage value of the asset at the end of its lifetime.
lifeThe total number of the periods within the asset lifetime.
periodThe period you wish to calculate depreciation for. The value must be expressed in the same units as life.
monthThe number of months in the first year. It is an optional argument. If it is omitted, the function will assume month to be 12.
+ +

Notes

+

How to apply the DB function.

+ +

Examples

+

The figure below displays the result returned by the DB function.

+

DB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm index 5f1ff371ce..dbf0b71bbf 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm @@ -15,28 +15,35 @@

DCOUNT Function

-

The DCOUNT function is one of the database functions. It is used to count the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify.

-

The DCOUNT function syntax is:

-

DCOUNT(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DCOUNT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DCOUNT function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DCOUNT Function

+

The DCOUNT function is one of the database functions. It is used to count the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DCOUNT(database, field, criteria)

+

The DCOUNT function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+ +

Notes

+

How to apply the DCOUNT function.

+ +

Examples

+

The figure below displays the result returned by the DCOUNT function.

+

DCOUNT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm index f270068409..7a49fed3ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm @@ -15,28 +15,35 @@

DCOUNTA Function

-

The DCOUNTA function is one of the database functions. It is used to count the nonblank cells (logical values and text are also counted) in a field (column) of records in a list or database that match conditions that you specify.

-

The DCOUNTA function syntax is:

-

DCOUNTA(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DCOUNTA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DCOUNTA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DCOUNTA Function

+

The DCOUNTA function is one of the database functions. It is used to count the nonblank cells (logical values and text are also counted) in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DCOUNTA(database, field, criteria)

+

The DCOUNTA function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+ +

Notes

+

How to apply the DCOUNTA function.

+ +

Examples

+

The figure below displays the result returned by the DCOUNTA function.

+

DCOUNTA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm index 34de39aa23..66d899b9bb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm @@ -15,32 +15,44 @@

DDB Function

-

The DDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the double-declining balance method.

-

The DDB function syntax is:

-

DDB(cost, salvage, life, period[, [factor]])

-

where

-

cost is the cost of the asset.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

life is the total number of the periods within the asset lifetime.

-

period is the period you wish to calculate depreciation for. The value must be expressed in the same units as life.

-

factor is the rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2.

-

Note: all the values must be positive numbers.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the DDB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the DDB function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DDB Function

+

The DDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the double-declining balance method.

+

Syntax

+

DDB(cost, salvage, life, period, [factor])

+

The DDB function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
costThe cost of the asset.
salvageThe salvage value of the asset at the end of its lifetime.
lifeThe total number of the periods within the asset lifetime.
periodThe period you wish to calculate depreciation for. The value must be expressed in the same units as life.
factorThe rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2.
+ +

Notes

+

All the values must be positive numbers.

+

How to apply the DDB function.

+ +

Examples

+

The figure below displays the result returned by the DDB function.

+

DDB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm index 75bbd3a9e8..ac403ae687 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm @@ -15,27 +15,32 @@

DEC2BIN Function

-

The DEC2BIN function is one of the engineering functions. It is used to convert a decimal number into a binary number.

-

The DEC2BIN function syntax is:

-

DEC2BIN(number [, num-hex-digits])

-

where

-

number is a decimal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the DEC2BIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the DEC2BIN function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DEC2BIN Function

+

The DEC2BIN function is one of the engineering functions. It is used to convert a decimal number into a binary number.

+

Syntax

+

DEC2BIN(number, [places])

+

The DEC2BIN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA decimal number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+ +

Notes

+

If the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the DEC2BIN function.

+ +

Examples

+

The figure below displays the result returned by the DEC2BIN function.

+

DEC2BIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm index eec5778eb7..b2e9d3a4b1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm @@ -15,27 +15,31 @@

DEC2HEX Function

-

The DEC2HEX function is one of the engineering functions. It is used to convert a decimal number into a hexadecimal number.

-

The DEC2HEX function syntax is:

-

DEC2HEX(number [, num-hex-digits])

-

where

-

number is a decimal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the DEC2HEX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the DEC2HEX function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DEC2HEX Function

+

The DEC2HEX function is one of the engineering functions. It is used to convert a decimal number into a hexadecimal number.

+

Syntax

+

DEC2HEX(number, [places])

+

The DEC2HEX function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA decimal number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+

Notes

+

If the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the DEC2HEX function.

+ +

Examples

+

The figure below displays the result returned by the DEC2HEX function.

+

DEC2HEX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm index ef33a77335..82b625154c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm @@ -15,27 +15,31 @@

DEC2OCT Function

-

The DEC2OCT function is one of the engineering functions. It is used to convert a decimal number into an octal number.

-

The DEC2OCT function syntax is:

-

DEC2OCT(number [, num-hex-digits])

-

where

-

number is a decimal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the DEC2OCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the DEC2OCT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DEC2OCT Function

+

The DEC2OCT function is one of the engineering functions. It is used to convert a decimal number into an octal number.

+

Syntax

+

DEC2OCT(number, [places])

+

The DEC2OCT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA decimal number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+

Notes

+

If the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the DEC2OCT function.

+ +

Examples

+

The figure below displays the result returned by the DEC2OCT function.

+

DEC2OCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm index 45bed556c0..b5a6997514 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm @@ -15,27 +15,30 @@

DECIMAL Function

-

The DECIMAL function is one of the math and trigonometry functions. It is used to convert a text representation of a number in a given base into a decimal number.

-

The DECIMAL function syntax is:

-

DECIMAL(text, base)

-

where

-

text is the text representation of the number you want to convert. The string lenght must be less than or equal to 255 characters.

-

base is the base of the number. An integer greater than or equal to 2 and less than or equal to 36.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the DECIMAL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the DECIMAL function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DECIMAL Function

+

The DECIMAL function is one of the math and trigonometry functions. It is used to convert a text representation of a number in a given base into a decimal number.

+

Syntax

+

DECIMAL(text, radix)

+

The DECIMAL function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textThe text representation of the number you want to convert. The string lenght must be less than or equal to 255 characters.
radixThe base of the number. An integer greater than or equal to 2 and less than or equal to 36.
+

Notes

+

How to apply the DECIMAL function.

+ +

Examples

+

The figure below displays the result returned by the DECIMAL function.

+

DECIMAL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm index 3cb0ff78e9..a15820fcad 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm @@ -15,24 +15,26 @@

DEGREES Function

-

The DEGREES function is one of the math and trigonometry functions. It is used to convert radians into degrees.

-

The DEGREES function syntax is:

-

DEGREES(angle)

-

where angle is a numeric value (radians) entered manually or included into the cell you make reference to.

-

To apply the DEGREES function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the DEGREES function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DEGREES Function

+

The DEGREES function is one of the math and trigonometry functions. It is used to convert radians into degrees.

+

Syntax

+

DEGREES(angle)

+

The DEGREES function has the following argument:

+ + + + + + + + + +
ArgumentDescription
angleA numeric value (radians) entered manually or included into the cell you make reference to.
+

Notes

+

How to apply the DEGREES function.

+ +

Examples

+

The figure below displays the result returned by the DEGREES function.

+

DEGREES Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm index fdb36e66b5..9e0ba9eec6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm @@ -15,27 +15,30 @@

DELTA Function

-

The DELTA function is one of the engineering functions. It is used to test if two numbers are equal. The function returns 1 if the numbers are equal and 0 otherwise.

-

The DELTA function syntax is:

-

DELTA(number-1 [, number-2])

-

where

-

number-1 is the first number.

-

number-2 is the second number. It is an optional argument. If it is omitted, the function will assume number-2 to be 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the DELTA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the DELTA function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

+

The DELTA function is one of the engineering functions. It is used to test if two numbers are equal. The function returns 1 if the numbers are equal and 0 otherwise.

+

Syntax

+

DELTA(number1, [number2])

+

The DELTA function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
number1The first number.
number2The second number. It is an optional argument. If it is omitted, the function will assume number2 to be 0.
+

Notes

+

How to apply the DELTA function.

+ +

Examples

+

The figure below displays the result returned by the DELTA function.

+

DELTA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm index 128d4b0dc7..febe96c077 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm @@ -15,25 +15,26 @@

DEVSQ Function

-

The DEVSQ function is one of the statistical functions. It is used to analyze the range of data and sum the squares of the deviations of numbers from their mean.

-

The DEVSQ function syntax is:

-

DEVSQ(argument-list)

-

where argument-list is up to 30 numerical values entered manually or included into the cells you make reference to.

-

To apply the DEVSQ function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the DEVSQ function,
  8. -
  9. enter the required arguments separating them by commas or select the range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DEVSQ Function

+

The DEVSQ function is one of the statistical functions. It is used to analyze the range of data and sum the squares of the deviations of numbers from their mean.

+

Syntax

+

DEVSQ(number1, [number2], ...)

+

The DEVSQ function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numerical values for which you want to find the sum of squares of deviations.
+

Notes

+

How to apply the DEVSQ function.

+ +

Examples

+

The figure below displays the result returned by the DEVSQ function.

+

DEVSQ Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm index 8ba486920b..db352b94fc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm @@ -15,28 +15,34 @@

DGET Function

-

The DGET function is one of the database functions. It is used to extract a single value from a column of a list or database that matches conditions that you specify.

-

The DGET function syntax is:

-

DGET(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DGET function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DGET function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DGET Function

+

The DGET function is one of the database functions. It is used to extract a single value from a column of a list or database that matches conditions that you specify.

+

Syntax

+

DGET(database, field, criteria)

+

The DGET function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DGET function.

+ +

Examples

+

The figure below displays the result returned by the DGET function.

+

DGET Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm index fbc8e3a7fc..a9b04cab7f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm @@ -15,58 +15,72 @@

DISC Function

-

The DISC function is one of the financial functions. It is used to calculate the discount rate for a security.

-

The DISC function syntax is:

-

DISC(settlement, maturity, pr, redemption[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

pr is the purchase price of the security, per $100 par value.

-

redemption is the redemption value of the security, per $100 par value.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The DISC function is one of the financial functions. It is used to calculate the discount rate for a security.

+

Syntax

+

DISC(settlement, maturity, pr, redemption, [basis])

+

The DISC function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
prThe purchase price of the security, per $100 par value.
redemptionThe redemption value of the security, per $100 par value.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the DISC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the DISC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DISC Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the DISC function.

+ +

Examples

+

The figure below displays the result returned by the DISC function.

+

DISC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm index 0c956b7789..8805bf562c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm @@ -15,28 +15,34 @@

DMAX Function

-

The DMAX function is one of the database functions. It is used to return the largest number in a field (column) of records in a list or database that matches conditions that you specify.

-

The DMAX function syntax is:

-

DMAX(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DMAX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DMAX function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DMAX Function

+

The DMAX function is one of the database functions. It is used to return the largest number in a field (column) of records in a list or database that matches conditions that you specify.

+

Syntax

+

DMAX(database, field, criteria)

+

The DMAX function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DMAX function.

+ +

Examples

+

The figure below displays the result returned by the DMAX function.

+

DMAX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm index 7c281964ca..7bab845928 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm @@ -15,28 +15,34 @@

DMIN Function

-

The DMIN function is one of the database functions. It is used to return the smallest number in a field (column) of records in a list or database that matches conditions that you specify.

-

The DMIN function syntax is:

-

DMIN(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DMIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DMIN function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DMIN Function

+

The DMIN function is one of the database functions. It is used to return the smallest number in a field (column) of records in a list or database that matches conditions that you specify.

+

Syntax

+

DMIN(database, field, criteria)

+

The DMIN function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DMIN function.

+ +

Examples

+

The figure below displays the result returned by the DMIN function.

+

DMIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm index 6fa602cc53..13d7384ebd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm @@ -15,28 +15,30 @@

DOLLAR Function

-

The DOLLAR function is one of the text and data functions. Is used to convert a number to text, using a currency format $#.##.

-

The DOLLAR function syntax is:

-

DOLLAR(number [, num-decimal])

-

where

-

number is any number to convert.

-

num-decimal is a number of decimal places to display. If it is omitted, the function will assume it to be 2.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the DOLLAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the DOLLAR function,
  8. -
  9. enter the required arguments separating them by comma, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DOLLAR Function

+

The DOLLAR function is one of the text and data functions. Is used to convert a number to text, using a currency format $#.##.

+

Syntax

+

DOLLAR(number, [decimals])

+

The DOLLAR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberAny number to convert.
decimalsA number of decimal places to display. If it is omitted, the function will assume it to be 2.
+

Notes

+

How to apply the DOLLAR function.

+ +

Examples

+

The figure below displays the result returned by the DOLLAR function.

+

DOLLAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm index 9a0c40d66d..849f429eff 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm @@ -15,28 +15,31 @@

DOLLARDE Function

-

The DOLLARDE function is one of the financial functions. It is used to convert a dollar price represented as a fraction into a dollar price represented as a decimal number.

-

The DOLLARDE function syntax is:

-

DOLLARDE(fractional-dollar, fraction)

-

where

-

fractional-dollar is an integer part and a fraction part separated by a decimal symbol.

-

fraction is an integer you wish to use as a denominator for the fraction part of the fractional-dollar value.

-

Note: for example, the fractional-dollar value, expressed as 1.03, is interpreted as 1 + 3/n, where n is the fraction value.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the DOLLARDE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the DOLLARDE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DOLLARDE Function

+

The DOLLARDE function is one of the financial functions. It is used to convert a dollar price represented as a fraction into a dollar price represented as a decimal number.

+

Syntax

+

DOLLARDE(fractional_dollar, fraction)

+

The DOLLARDE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
fractional_dollarAn integer part and a fraction part separated by a decimal symbol.
fractionAn integer you wish to use as a denominator for the fraction part of the fractional_dollar value.
+

Notes

+

For example, the fractional_dollar value, expressed as 1.03, is interpreted as 1 + 3/n, where n is the fraction value.

+

How to apply the DOLLARDE function.

+ +

Examples

+

The figure below displays the result returned by the DOLLARDE function.

+

DOLLARDE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm index 10d6293a32..5cd27fb2a3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm @@ -15,28 +15,31 @@

DOLLARFR Function

-

The DOLLARFR function is one of the financial functions. It is used to convert a dollar price represented as a decimal number into a dollar price represented as a fraction.

-

The DOLLARFR function syntax is:

-

DOLLARFR(decimal-dollar, fraction)

-

where

-

decimal-dollar is a decimal number.

-

fraction is an integer you wish to use as a denominator for a returned fraction.

-

Note: for example, the returned value of 1.03 is interpreted as 1 + 3/n, where n is the fraction value.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the DOLLARFR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the DOLLARFR function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DOLLARFR Function

+

The DOLLARFR function is one of the financial functions. It is used to convert a dollar price represented as a decimal number into a dollar price represented as a fraction.

+

Syntax

+

DOLLARFR(decimal_dollar, fraction)

+

The DOLLARFR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
decimal_dollarA decimal number.
fractionAn integer you wish to use as a denominator for a returned fraction.
+

Notes

+

For example, the returned value of 1.03 is interpreted as 1 + 3/n, where n is the fraction value.

+

How to apply the DOLLARFR function.

+ +

Examples

+

The figure below displays the result returned by the DOLLARFR function.

+

DOLLARFR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm index 480a9f8a8e..88f6105ea4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm @@ -15,28 +15,34 @@

DPRODUCT Function

-

The DPRODUCT function is one of the database functions. It is used to multiply the values in a field (column) of records in a list or database that match conditions that you specify.

-

The DPRODUCT function syntax is:

-

DPRODUCT(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DPRODUCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DPRODUCT function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DPRODUCT Function

+

The DPRODUCT function is one of the database functions. It is used to multiply the values in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DPRODUCT(database, field, criteria)

+

The DPRODUCT function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DPRODUCT function.

+ +

Examples

+

The figure below displays the result returned by the DPRODUCT function.

+

DPRODUCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/drop.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/drop.htm index 4bb9511eb2..22ad1b52d7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/drop.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/drop.htm @@ -15,29 +15,35 @@

DROP Function

-

The DROP function is one of the lookup and reference functions. It is used to drop rows or columns from array start or end.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The DROP function syntax is:

-

DROP(array, rows, [columns])

-

where

-

array is used to set the array from which to drop rows or columns.

-

rows is used to set the number of rows to drop. A negative value drops from the end of the array.

-

columns is used to set the number of columns to drop. A negative value drops from the end of the array.

-

To apply the DROP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the DROP function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The DROP function is one of the lookup and reference functions. It is used to drop rows or columns from array start or end.

+

Syntax

+

DROP(array, rows, [columns])

+

The DROP function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayIs used to set the array from which to drop rows or columns.
rowsIs used to set the number of rows to drop. A negative value drops from the end of the array.
columnsIs used to set the number of columns to drop. A negative value drops from the end of the array.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the DROP function.

+ +

Examples

+

The figure below displays the result returned by the DROP function.

+

DROP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm index 5e7496c9f1..6474b58aad 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm @@ -15,28 +15,34 @@

DSTDEV Function

-

The DSTDEV function is one of the database functions. It is used to estimate the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

-

The DSTDEV function syntax is:

-

DSTDEV(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DSTDEV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DSTDEV function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DSTDEV Function

+

The DSTDEV function is one of the database functions. It is used to estimate the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DSTDEV(database, field, criteria)

+

The DSTDEV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DSTDEV function.

+ +

Examples

+

The figure below displays the result returned by the DSTDEV function.

+

DSTDEV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm index 1bfda9be20..924453261b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm @@ -15,28 +15,34 @@

DSTDEVP Function

-

The DSTDEVP function is one of the database functions. It is used to calculate the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

-

The DSTDEVP function syntax is:

-

DSTDEVP(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DSTDEVP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DSTDEVP function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DSTDEVP Function

+

The DSTDEVP function is one of the database functions. It is used to calculate the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DSTDEVP(database, field, criteria)

+

The DSTDEVP function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DSTDEVP function.

+ +

Examples

+

The figure below displays the result returned by the DSTDEVP function.

+

DSTDEVP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm index 2e90e641bc..2f6db03fbc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm @@ -15,28 +15,34 @@

DSUM Function

-

The DSUM function is one of the database functions. It is used to add the numbers in a field (column) of records in a list or database that match conditions that you specify.

-

The DSUM function syntax is:

-

DSUM(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DSUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DSUM function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DSUM Function

+

The DSUM function is one of the database functions. It is used to add the numbers in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DSUM(database, field, criteria)

+

The DSUM function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DSUM function.

+ +

Examples

+

The figure below displays the result returned by the DSUM function.

+

DSUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm index 667753eef8..28a35be2d4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm @@ -15,59 +15,77 @@

DURATION Function

-

The DURATION function is one of the financial functions. It is used to calculate the Macaulay duration of a security with an assumed par value of $100.

-

The DURATION function syntax is:

-

DURATION(settlement, maturity, coupon, yld, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

coupon is the annual coupon rate of the security.

-

yld is the annual yield of the security.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The DURATION function is one of the financial functions. It is used to calculate the Macaulay duration of a security with an assumed par value of $100.

+

Syntax

+

DURATION(settlement, maturity, coupon, yld, frequency, [basis])

+

The DURATION function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
couponThe annual coupon rate of the security.
yldThe annual yield of the security.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the DURATION function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the DURATION function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DURATION Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the DURATION function.

+ +

Examples

+

The figure below displays the result returned by the DURATION function.

+

DURATION Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm index 9298ecafbf..1d3e33d88b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm @@ -15,28 +15,34 @@

DVAR Function

-

The DVAR function is one of the database functions. It is used to estimate the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

-

The DVAR function syntax is:

-

DVAR(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DVAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DVAR function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DVAR Function

+

The DVAR function is one of the database functions. It is used to estimate the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DVAR(database, field, criteria)

+

The DVAR function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DVAR function.

+ +

Examples

+

The figure below displays the result returned by the DVAR function.

+

DVAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm index 307ac72f0a..87c5a0e6f1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm @@ -15,28 +15,34 @@

DVARP Function

-

The DVARP function is one of the database functions. It is used to calculate the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

-

The DVARP function syntax is:

-

DVARP(database, field, criteria)

-

where

-

database is the range of cells that make up a database. It must contain column headings in the first row.

-

field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

-

criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

-

To apply the DVARP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Database function group from the list,
  6. -
  7. click the DVARP function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

DVARP Function

+

The DVARP function is one of the database functions. It is used to calculate the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

+

Syntax

+

DVARP(database, field, criteria)

+

The DVARP function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
databaseThe range of cells that make up a database. It must contain column headings in the first row.
fieldAn argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.
criteriaThe range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.
+

Notes

+

How to apply the DVARP function.

+ +

Examples

+

The figure below displays the result returned by the DVARP function.

+

DVARP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm index 87cbec2806..ed751c9f48 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm @@ -15,27 +15,30 @@

ECMA.CEILING Function

-

The ECMA.CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. Negative numbers are rounded towards zero.

-

The ECMA.CEILING function syntax is:

-

ECMA.CEILING(x, significance)

-

where

-

x is the number you wish to round up,

-

significance is the multiple of significance you wish to round up to,

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the ECMA.CEILING function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ECMA.CEILING function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ECMA.CEILING Function

+

The ECMA.CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. Negative numbers are rounded towards zero.

+

Syntax

+

ECMA.CEILING(x, significance)

+

The ECMA.CEILING function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe number you wish to round up.
significanceThe multiple of significance you wish to round up to.
+

Notes

+

How to apply the ECMA.CEILING function.

+ +

Examples

+

The figure below displays the result returned by the ECMA.CEILING function.

+

ECMA.CEILING Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm index 7a3035a281..59ff22f5de 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm @@ -15,26 +15,30 @@

EDATE Function

-

The EDATE function is one of the date and time functions. It is used to return the serial number of the date which comes the indicated number of months (month-offset) before or after the specified date (start-date).

-

The EDATE function syntax is:

-

EDATE(start-date, month-offset)

-

where

-

start-date is a number representing the first date of the period entered using the Date function or other date and time function.

-

month-offset is a number of months before or after start-day. If the month-offset has the negative sign, the function will return the serial number of the date which comes before the specified start-date. If the month-offset has the positive sign, the function will return the serial number of the date which follows after the specified start-date.

-

To apply the EDATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the EDATE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EDATE Function

+

The EDATE function is one of the date and time functions. It is used to return the serial number of the date which comes the indicated number of months (months) before or after the specified date (start_date).

+

Syntax

+

EDATE(start_date, months)

+

The EDATE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
start_dateA number representing the first date of the period entered using the DATE function or other date and time function.
monthsA number of months before or after start_date. If the months has the negative sign, the function will return the serial number of the date which comes before the specified start_date. If the months has the positive sign, the function will return the serial number of the date which follows after the specified start_date.
+

Notes

+

How to apply the EDATE function.

+ +

Examples

+

The figure below displays the result returned by the EDATE function.

+

EDATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm index f81266b43d..3d732828c4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm @@ -15,27 +15,31 @@

EFFECT Function

-

The EFFECT function is one of the financial functions. It is used to calculate the effective annual interest rate for a security based on a specified nominal annual interest rate and the number of compounding periods per year.

-

The EFFECT function syntax is:

-

EFFECT(nominal-rate, npery)

-

where

-

nominal-rate is the nominal annual interest rate of the security.

-

npery is the number of compounding periods per year.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the EFFECT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the EFFECT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EFFECT Function

+

The EFFECT function is one of the financial functions. It is used to calculate the effective annual interest rate for a security based on a specified nominal annual interest rate and the number of compounding periods per year.

+

Syntax

+

EFFECT(nominal_rate, npery)

+

The EFFECT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
nominal_rateThe nominal annual interest rate of the security.
nperyThe number of compounding periods per year.
+ +

Notes

+

How to apply the EFFECT function.

+ +

Examples

+

The figure below displays the result returned by the EFFECT function.

+

EFFECT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm index ff5dea3fab..35abdf5120 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm @@ -15,26 +15,30 @@

EOMONTH Function

-

The EOMONTH function is one of the date and time functions. Is used to return the serial number of the last day of the month that comes the indicated number of months before or after the specified start date.

-

The EOMONTH function syntax is:

-

EOMONTH(start-date, month-offset)

-

where

-

start-date is a number representing the first date of the period entered using the Date function or other date and time function.

-

month-offset is a number of months before or after start-day. If the month-offset has the negative sign, the function will return the serial number of the date which comes before the specified start-date. If the month-offset has the positive sign, the function will return the serial number of the date which follows after the specified start-date.

-

To apply the EOMONTH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the EOMONTH function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EOMONTH Function

+

The EOMONTH function is one of the date and time functions. Is used to return the serial number of the last day of the month that comes the indicated number of months before or after the specified start date.

+

Syntax

+

EOMONTH(start_date, months)

+

The EOMONTH function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
start_dateA number representing the first date of the period entered using the DATE function or other date and time function.
monthsA number of months before or after start_date. If the months has the negative sign, the function will return the serial number of the date which comes before the specified start_date. If the months has the positive sign, the function will return the serial number of the date which follows after the specified start_date.
+

Notes

+

How to apply the EOMONTH function.

+ +

Examples

+

The figure below displays the result returned by the EOMONTH function.

+

EOMONTH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm index 644e84141a..92685cc6bd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm @@ -15,26 +15,26 @@

ERF.PRECISE Function

-

The ERF.PRECISE function is one of the engineering functions. It is used to return the error function integrated between 0 and the specified lower limit.

-

The ERF.PRECISE function syntax is:

-

ERF.PRECISE(x)

-

where

-

x is the lower limit of integration.

-

The numeric value can be entered manually or included into the cell you make reference to.

-

To apply the ERF.PRECISE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the ERF.PRECISE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ERF.PRECISE Function

+

The ERF.PRECISE function is one of the engineering functions. It is used to return the error function integrated between 0 and the specified lower limit.

+

Syntax

+

ERF.PRECISE(x)

+

The ERF.PRECISE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
xThe lower limit of integration.
+

Notes

+

How to apply the ERF.PRECISE function.

+ +

Examples

+

The figure below displays the result returned by the ERF.PRECISE function.

+

ERF.PRECISE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm index 809c1e662a..a619f796a7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm @@ -15,27 +15,30 @@

ERF Function

-

The ERF function is one of the engineering functions. It is used to calculate the error function integrated between the specified lower and upper limits.

-

The ERF function syntax is:

-

ERF(lower-bound [, upper-bound])

-

where

-

lower-bound is the lower limit of integration.

-

upper-bound is the upper limit of integration. It is an optional argument. If it is omitted, the function will calculate the error function integrated between 0 and lower-bound.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the ERF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the ERF function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ERF Function

+

The ERF function is one of the engineering functions. It is used to calculate the error function integrated between the specified lower and upper limits.

+

Syntax

+

ERF(lower_limit, [upper_limit])

+

The ERF function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
lower_limitThe lower limit of integration.
upper_limitThe upper limit of integration. It is an optional argument. If it is omitted, the function will calculate the error function integrated between 0 and lower_limit.
+

Notes

+

How to apply the ERF function.

+ +

Examples

+

The figure below displays the result returned by the ERF function.

+

ERF Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm index 0d6b945528..ba7a0535a0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm @@ -15,24 +15,27 @@

ERFC.PRECISE Function

-

The ERFC.PRECISE function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity.

-

The ERFC.PRECISE function syntax is:

-

ERFC.PRECISE(x)

-

where x is the lower limit of integration entered manually or included into the cell you make reference to.

-

To apply the ERFC.PRECISE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the ERFC.PRECISE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ERFC.PRECISE Function

+

The ERFC.PRECISE function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity.

+

Syntax

+

ERFC.PRECISE(x)

+

The ERFC.PRECISE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
xThe lower limit of integration.
+ +

Notes

+

How to apply the ERFC.PRECISE function.

+ +

Examples

+

The figure below displays the result returned by the ERFC.PRECISE function.

+

ERFC.PRECISE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm index 239d43cc72..a59424d099 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm @@ -15,24 +15,26 @@

ERFC Function

-

The ERFC function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity.

-

The ERFC function syntax is:

-

ERFC(lower-bound)

-

where lower-bound is the lower limit of integration entered manually or included into the cell you make reference to.

-

To apply the ERFC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the ERFC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ERFC Function

+

The ERFC function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity.

+

Syntax

+

ERFC(x)

+

The ERFC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
xThe lower limit of integration.
+

Notes

+

How to apply the ERFC function.

+ +

Examples

+

The figure below displays the result returned by the ERFC function.

+

ERFC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/error-type.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/error-type.htm index 36e4a97b81..b277cb6bd2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/error-type.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/error-type.htm @@ -15,66 +15,69 @@

ERROR.TYPE Function

-

The ERROR.TYPE function is one of the information functions. It is used to return the numeric representation of one of the existing errors.

-

The ERROR.TYPE function syntax is:

-

ERROR.TYPE(value)

-

where value is an error value entered manually or included into the cell you make reference to. The error value can be one of the following:

+

The ERROR.TYPE function is one of the information functions. It is used to return the numeric representation of one of the existing errors.

+

Syntax

+

ERROR.TYPE(error_val)

+

The ERROR.TYPE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
error_valAn error value. The possible values are listed in the table below.
+

The error_val argument can be one of the following:

- - + + - + - + - + - + - + - + - + - + - +
Error valueNumeric representationError valueNumeric representation
#NULL!#NULL! 1
#DIV/0!#DIV/0! 2
#VALUE!#VALUE! 3
#REF!#REF! 4
#NAME?#NAME? 5
#NUM!#NUM! 6
#N/A#N/A 7
#GETTING_DATA#GETTING_DATA 8
OtherOther #N/A
-

To apply the ERROR.TYPE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ERROR.TYPE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ERROR.TYPE Function

+

Notes

+

How to apply the ERROR.TYPE function.

+ +

Examples

+

The figure below displays the result returned by the ERROR.TYPE function.

+

ERROR.TYPE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm index 51f60a5478..e7393ebac4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm @@ -15,24 +15,26 @@

EVEN Function

-

The EVEN function is one of the math and trigonometry functions. It is used to round the number up to the nearest even integer.

-

The EVEN function syntax is:

-

EVEN(x)

-

where x is a number you wish to round up, a numeric value entered manually or included into the cell you make reference to.

-

To apply the EVEN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the EVEN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EVEN Function

+

The EVEN function is one of the math and trigonometry functions. It is used to round the number up to the nearest even integer.

+

Syntax

+

EVEN(number)

+

The EVEN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA number you wish to round up.
+

Notes

+

How to apply the EVEN function.

+ +

Examples

+

The figure below displays the result returned by the EVEN function.

+

EVEN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm index 71efdbf205..49544d65c4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm @@ -15,30 +15,28 @@

EXACT Function

-

The EXACT function is one of the text and data functions. Is used to compare data in two cells. The function returns TRUE if the data are the same, and FALSE if not.

-

The EXACT function syntax is:

-

EXACT(text1, text2)

-

where text1(2) is data entered manually or included into the cell you make reference to.

-

To apply the EXACT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the EXACT function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the EXACT function is case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

There are two arguments: text1 = A1; text2 = B1, where A1 is MyPassword, B1 is mypassword. So the function returns FALSE.

-

EXACT Function: FALSE

+

The EXACT function is one of the text and data functions. Is used to compare data in two cells. The function returns TRUE if the data are the same, and FALSE if not.

+

Syntax

+

EXACT(text1, text2)

+

The EXACT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
text1(2)Two text strings you want to compare.
+

Notes

+

The EXACT function is case-sensitive.

+

How to apply the EXACT function.

+

Examples

+

There are two arguments: text1 = A1; text2 = B1, where A1 is MyPassword, B1 is mypassword. So the function returns FALSE.

+

EXACT Function: FALSE

If we change the A1 data converting all the uppercase letters to lowercase, the function returns TRUE:

-

EXACT Function: TRUE

+

EXACT Function: TRUE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm index 437c342215..bbdb5cfc38 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm @@ -15,24 +15,26 @@

EXP Function

-

The EXP function is one of the math and trigonometry functions. It is used to return the e constant raised to the desired power. The e constant is equal to 2,71828182845904.

-

The EXP function syntax is:

-

EXP(x)

-

where x is a power you wish to raise e to, a numeric value entered manually or included into the cell you make reference to.

-

To apply the EXP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the EXP function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EXP Function

+

The EXP function is one of the math and trigonometry functions. It is used to return the e constant raised to the desired power. The e constant is equal to 2,71828182845904.

+

Syntax

+

EXP(number)

+

The EXP function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA power you wish to raise e to.
+

Notes

+

How to apply the EXP function.

+ +

Examples

+

The figure below displays the result returned by the EXP function.

+

EXP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/expand.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/expand.htm index dd01fbe140..c430a12b1b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/expand.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/expand.htm @@ -15,30 +15,39 @@

EXPAND Function

-

The EXPAND function is a lookup and reference function. It is used to expand a range of data (array) by adding rows and columns.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The EXPAND function syntax is:

-

=EXPAND(array, rows, [columns], [pad_with])

-

where

-

array is the range of cells to be expanded,

-

rows is the number of rows in the returned array. Although this is a required argument, if omitted, rows will not be added and the number of columns must be specified.

-

[columns] is an optional argument identifying the number of columns in the returned array. If omitted, columns will not be added and the number of rows must be specified.

-

[pad_with] is the value to fill in the added cells. #N/A is the default value.

-

To apply the EXPAND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the EXPAND function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EXPAND Function

+

The EXPAND function is one of the lookup and reference functions. It is used to expand a range of data (array) by adding rows and columns.

+

Syntax

+

EXPAND(array, rows, [columns], [pad_with])

+

The EXPAND function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of cells to be expanded.
rowsThe number of rows in the returned array. Although this is a required argument, if omitted, rows will not be added and the number of columns must be specified.
columnsAn optional argument identifying the number of columns in the returned array. If omitted, columns will not be added and the number of rows must be specified.
pad_withThe value to fill in the added cells. #N/A is the default value.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the EXPAND function.

+ +

Examples

+

The figure below displays the result returned by the EXPAND function.

+

EXPAND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm index e7e7736129..d2ed3ed8b3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm @@ -15,28 +15,35 @@

EXPON.DIST Function

-

The EXPON.DIST function is one of the statistical functions. It is used to return the exponential distribution.

-

The EXPON.DIST function syntax is:

-

EXPON.DIST(x, lambda, cumulative)

-

where

-

x is the value of the function, a numeric value greater than or equal to 0,

-

lambda is the parameter of the value, a numeric value greater than 0,

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function, if FALSE, it will return the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the EXPON.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the EXPON.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EXPON.DIST Function

+

The EXPON.DIST function is one of the statistical functions. It is used to return the exponential distribution.

+

Syntax

+

EXPON.DIST(x, lambda, cumulative)

+

The EXPON.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value of the function, a numeric value greater than or equal to 0.
lambdaThe parameter of the value, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function, if it is FALSE, it will return the probability density function.
+ +

Notes

+

How to apply the EXPON.DIST function.

+ +

Examples

+

The figure below displays the result returned by the EXPON.DIST function.

+

EXPON.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm index bedd4123d0..5d1de3aa1c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm @@ -15,28 +15,34 @@

EXPONDIST Function

-

The EXPONDIST function is one of the statistical functions. It is used to return the exponential distribution.

-

The EXPONDIST function syntax is:

-

EXPONDIST(x, lambda, cumulative-flag)

-

where

-

x is the value of the function, a numeric value greater than or equal to 0,

-

lambda is the parameter of the value, a numeric value greater than 0,

-

cumulative-flag is the form of the function to return, a logical value: TRUE or FALSE. If cumulative-flag is TRUE, the function will return the cumulative distribution function, if FALSE, it will return the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the EXPONDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the EXPONDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

EXPONDIST Function

+

The EXPONDIST function is one of the statistical functions. It is used to return the exponential distribution.

+

Syntax

+

EXPONDIST(x, lambda, cumulative)

+

The EXPONDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value of the function, a numeric value greater than or equal to 0.
lambdaThe parameter of the value, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function, if it is FALSE, it will return the probability density function.
+

Notes

+

How to apply the EXPONDIST function.

+ +

Examples

+

The figure below displays the result returned by the EXPONDIST function.

+

EXPONDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm index 2cccf1cc9e..cc9b2e5120 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm @@ -15,28 +15,34 @@

F.DIST.RT Function

-

The F.DIST.RT function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity.

-

The F.DIST.RT function syntax is:

-

F.DIST.RT(x, deg-freedom1, deg-freedom2)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1.

-

deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the F.DIST.RT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the F.DIST.RT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

F.DIST.RT Function

+

The F.DIST.RT function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity.

+

Syntax

+

F.DIST.RT(x, deg_freedom1, deg_freedom2)

+

The F.DIST.RT function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
deg_freedom1The numerator degrees of freedom, a numeric value greater than 1.
deg_freedom2The denominator degrees of freedom, a numeric value greater than 1.
+

Notes

+

How to apply the F.DIST.RT function.

+ +

Examples

+

The figure below displays the result returned by the F.DIST.RT function.

+

F.DIST.RT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm index 7dce4b48e5..ecf65ae076 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm @@ -15,29 +15,39 @@

F.DIST Function

-

The F.DIST function is one of the statistical functions. It is used to return the F probability distribution. You can use this function to determine whether two data sets have different degrees of diversity.

-

The F.DIST function syntax is:

-

F.DIST(x, deg-freedom1, deg-freedom2, cumulative)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0

-

deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 0.

-

deg-freedom2 is denominator degrees of freedom, a numeric value greater than 0.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the F.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the F.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

F.DIST Function

+

The F.DIST function is one of the statistical functions. It is used to return the F probability distribution. You can use this function to determine whether two data sets have different degrees of diversity.

+

Syntax

+

F.DIST(x, deg_freedom1, deg_freedom2, cumulative)

+

The F.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
deg_freedom1The numerator degrees of freedom, a numeric value greater than 0.
deg_freedom2The denominator degrees of freedom, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If cumulative is TRUE, the function will return the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+ +

Notes

+

How to apply the F.DIST function.

+ +

Examples

+

The figure below displays the result returned by the F.DIST function.

+

F.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm index 2979a6c0ed..d2a47efa05 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm @@ -15,28 +15,34 @@

F.INV.RT Function

-

The F.INV.RT function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets.

-

The F.INV.RT function syntax is:

-

F.INV.RT(probability, deg-freedom1, deg-freedom2)

-

where

-

probability is the probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1.

-

deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1.

-

deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the F.INV.RT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the F.INV.RT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

F.INV.RT Function

+

The F.INV.RT function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets.

+

Syntax

+

F.INV.RT(probability, deg_freedom1, deg_freedom2)

+

The F.INV.RT function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1.
deg_freedom1The numerator degrees of freedom, a numeric value greater than 1.
deg_freedom2The denominator degrees of freedom, a numeric value greater than 1.
+

Notes

+

How to apply the F.INV.RT function.

+ +

Examples

+

The figure below displays the result returned by the F.INV.RT function.

+

F.INV.RT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm index de29ae34ed..c6b2ce0f14 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm @@ -15,28 +15,34 @@

F.INV Function

-

The F.INV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets.

-

The F.INV function syntax is:

-

F.INV(probability, deg-freedom1, deg-freedom2)

-

where

-

probability is the probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1.

-

deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1.

-

deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the F.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the F.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

F.INV Function

+

The F.INV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets.

+

Syntax

+

F.INV(probability, deg_freedom1, deg_freedom2)

+

The F.INV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1.
deg_freedom1The numerator degrees of freedom, a numeric value greater than 1.
deg_freedom2The denominator degrees of freedom, a numeric value greater than 1.
+

Notes

+

How to apply the F.INV function.

+ +

Examples

+

The figure below displays the result returned by the F.INV function.

+

F.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-test.htm index be24bcc596..e3d3bba82d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-test.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-test.htm @@ -15,27 +15,31 @@

F.TEST Function

-

The F.TEST function is one of the statistical functions. It is used to return the result of an F-test, the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances.

-

The F.TEST function syntax is:

-

F.TEST(array1, array2)

-

where

-

array1 is the first range of values.

-

array2 is the second range of values.

-

The values can be entered manually or included into the cells you make reference to. Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value.

-

To apply the F.TEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the F.TEST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

F.TEST Function

+

The F.TEST function is one of the statistical functions. It is used to return the result of an F-test, the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances.

+

Syntax

+

F.TEST(array1, array2)

+

The F.TEST function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
array1The first range of values.
array2The second range of values.
+

Notes

+

Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value.

+

How to apply the F.TEST function.

+ +

Examples

+

The figure below displays the result returned by the F.TEST function.

+

F.TEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm index a662ef1cd0..077312db9a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm @@ -15,24 +15,26 @@

FACT Function

-

The FACT function is one of the math and trigonometry functions. It is used to return the factorial of a number.

-

The FACT function syntax is:

-

FACT(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the FACT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the FACT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FACT Function

+

The FACT function is one of the math and trigonometry functions. It is used to return the factorial of a number.

+

Syntax

+

FACT(number)

+

The FACT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the factorial.
+

Notes

+

How to apply the FACT function.

+ +

Examples

+

The figure below displays the result returned by the FACT function.

+

FACT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm index 99cd862f74..fc811fc8a6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm @@ -15,24 +15,26 @@

FACTDOUBLE Function

-

The FACTDOUBLE function is one of the math and trigonometry functions. It is used to return the double factorial of a number.

-

The FACTDOUBLE function syntax is:

-

FACTDOUBLE(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the FACTDOUBLE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the FACTDOUBLE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FACTDOUBLE Function

+

The FACTDOUBLE function is one of the math and trigonometry functions. It is used to return the double factorial of a number.

+

Syntax

+

FACTDOUBLE(number)

+

The FACTDOUBLE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the double factorial.
+

Notes

+

How to apply the FACTDOUBLE function.

+ +

Examples

+

The figure below displays the result returned by the FACTDOUBLE function.

+

FACTDOUBLE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm index 876d35c806..8c7427559d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm @@ -15,22 +15,15 @@

FALSE Function

-

The FALSE function is one of the logical functions. The function returns FALSE and does not require any argument.

-

The FALSE function syntax is:

-

FALSE()

-

To apply the FALSE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the FALSE function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

FALSE Function

+

The FALSE function is one of the logical functions. The function returns FALSE and does not require any argument.

+

Syntax

+

FALSE()

+

Notes

+

How to apply the FALSE function.

+ +

Examples

+

The figure below displays the result returned by the FALSE function.

+

FALSE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm index af0492cb28..6c7b48c708 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm @@ -15,28 +15,35 @@

FDIST Function

-

The FDIST function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity.

-

The FDIST function syntax is:

-

FDIST(x, deg-freedom1, deg-freedom2)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1 and less than 10^10.

-

deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1 and less than 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the FDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FDIST Function

+

The FDIST function is one of the statistical functions. It is used to return the (right-tailed) F probability distribution (degree of diversity) for two data sets. You can use this function to determine whether two data sets have different degrees of diversity.

+

Syntax

+

FDIST(x, deg_freedom1, deg_freedom2)

+

The FDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
deg_freedom1The numerator degrees of freedom, a numeric value greater than 1 and less than 10^10.
deg_freedom2The denominator degrees of freedom, a numeric value greater than 1 and less than 10^10.
+ +

Notes

+

How to apply the FDIST function.

+ +

Examples

+

The figure below displays the result returned by the FDIST function.

+

FDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/filter.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/filter.htm index 7b9d834c80..0798b8e3f8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/filter.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/filter.htm @@ -15,29 +15,35 @@

FILTER Function

-

The FILTER function is a lookup and reference function. It is used to filter a range of data and to return the results that match the criteria you specify. The FILTER function only extracts the necessary data and the results update when the original data change.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The FILTER function syntax is:

-

=FILTER(array,include,[if_empty])

-

where

-

array is the range of cells to filter,

-

include is the filtering criteria supplied as a Boolean array (TRUE/FALSE) the same height (columns) and width (rows) as the array,

-

[if_empty] is the value to return when the filter returns no results. This argument is optional.

-

To apply the FILTER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the FILTER function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FILTER Function

+

The FILTER function is one of the lookup and reference functions. It is used to filter a range of data and to return the results that match the criteria you specify. The FILTER function only extracts the necessary data and the results update when the original data change.

+

Syntax

+

FILTER(array, include, [if_empty])

+

The FILTER function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of cells to filter.
includeThe filtering criteria supplied as a Boolean array (TRUE/FALSE) the same height (columns) and width (rows) as the array.
if_emptyThe value to return when the filter returns no results. This argument is optional.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the FILTER function.

+ +

Examples

+

The figure below displays the result returned by the FILTER function.

+

FILTER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm index ce8069a6bc..e93b77fae1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm @@ -15,32 +15,37 @@

FIND/FINDB Function

-

The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (string-1) within a string (string-2). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The FIND/FINDB function syntax is:

-

FIND(string-1, string-2 [,start-pos])

-

FINDB(string-1, string-2 [,start-pos])

-

where

-

string-1 is a string you are looking for,

-

string-2 is a string you are searching within,

-

start-pos is a position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string.

-

The values can be entered manually or included into the cell you make reference to.

-

Note: if there are no matches, the function will return the #VALUE! error.

-

To apply the FIND/FINDB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the FIND/FINDB function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the FIND/FINDB function is case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FIND/FINDB Function

+

The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (find_text) within a string (within_text). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

FIND(find_text, within_text, [start_num])

+

FINDB(find_text, within_text, [start_num])

+

The FIND/FINDB function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
find_textA string you are looking for.
within_textA string you are searching within.
start_numA position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string.
+

Notes

+

The FIND/FINDB function is case-sensitive.

+

If there are no matches, the function will return the #VALUE! error.

+

How to apply the FIND/FINDB function.

+ +

Examples

+

The figure below displays the result returned by the FIND function.

+

FIND/FINDB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/findb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/findb.htm index 7bb08c3920..e7f90d06bc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/findb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/findb.htm @@ -15,32 +15,37 @@

FIND/FINDB Function

-

The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (string-1) within a string (string-2). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The FIND/FINDB function syntax is:

-

FIND(string-1, string-2 [,start-pos])

-

FINDB(string-1, string-2 [,start-pos])

-

where

-

string-1 is a string you are looking for,

-

string-2 is a string you are searching within,

-

start-pos is a position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string.

-

The values can be entered manually or included into the cell you make reference to.

-

Note: if there are no matches, the function will return the #VALUE! error.

-

To apply the FIND/FINDB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the FIND/FINDB function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the FIND/FINDB function is case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FIND/FINDB Function

+

The FIND/FINDB function is one of the text and data functions. Is used to find the specified substring (find_text) within a string (within_text). The FIND function is intended for languages that use the single-byte character set (SBCS), while FINDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

FIND(find_text, within_text, [start_num])

+

FINDB(find_text, within_text, [start_num])

+

The FIND/FINDB function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
find_textA string you are looking for.
within_textA string you are searching within.
start_numA position in a string where the search will start. It is an optional argument. If it is omitted, the funcion will start search from the beginning of the string.
+

Notes

+

The FIND/FINDB function is case-sensitive.

+

If there are no matches, the function will return the #VALUE! error.

+

How to apply the FIND/FINDB function.

+ +

Examples

+

The figure below displays the result returned by the FIND function.

+

FIND/FINDB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm index 848d67fe28..0c006019d6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm @@ -15,28 +15,34 @@

FINV Function

-

The FINV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets.

-

The FINV function syntax is:

-

FINV(probability, deg-freedom1, deg-freedom2)

-

where

-

probability is the probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1.

-

deg-freedom1 is the numerator degrees of freedom, a numeric value greater than 1 and less than 10^10.

-

deg-freedom2 is denominator degrees of freedom, a numeric value greater than 1 and less than 10^10.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the FINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FINV Function

+

The FINV function is one of the statistical functions. It is used to return the inverse of the (right-tailed) F probability distribution. The F distribution can be used in an F-test that compares the degree of variability in two data sets.

+

Syntax

+

FINV(probability, deg_freedom1, deg_freedom2)

+

The FINV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the F cumulative distribution. A numeric value greater than 0 but less than 1.
deg_freedom1The numerator degrees of freedom, a numeric value greater than 1 and less than 10^10.
deg_freedom2The denominator degrees of freedom, a numeric value greater than 1 and less than 10^10.
+

Notes

+

How to apply the FINV function.

+ +

Examples

+

The figure below displays the result returned by the FINV function.

+

FINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm index b57a585124..9305f0694c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm @@ -15,24 +15,26 @@

FISHER Function

-

The FISHER function is one of the statistical functions. It is used to return the Fisher transformation of a number.

-

The FISHER function syntax is:

-

FISHER(number)

-

where number is a numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to.

-

To apply the FISHER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FISHER function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FISHER Function

+

The FISHER function is one of the statistical functions. It is used to return the Fisher transformation of a number.

+

Syntax

+

FISHER(x)

+

The FISHER function has the following argument:

+ + + + + + + + + +
ArgumentDescription
xA numeric value greater than - 1 but less than 1.
+

Notes

+

How to apply the FISHER function.

+ +

Examples

+

The figure below displays the result returned by the FISHER function.

+

FISHER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm index 8bfb30afe3..5ceaa3530a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm @@ -15,24 +15,26 @@

FISHERINV Function

-

The FISHERINV function is one of the statistical functions. It is used to perform the inverse of Fisher transformation.

-

The FISHERINV function syntax is:

-

FISHERINV(number)

-

where number is a numeric value entered manually or included into the cell you make reference to.

-

To apply the FISHERINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FISHERINV function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FISHERINV Function

+

The FISHERINV function is one of the statistical functions. It is used to perform the inverse of the Fisher transformation.

+

Syntax

+

FISHERINV(y)

+

The FISHERINV function has the following argument:

+ + + + + + + + + +
ArgumentDescription
yA numeric value for which you want to perform the inverse of the Fisher transformation.
+

Notes

+

How to apply the FISHERINV function.

+ +

Examples

+

The figure below displays the result returned by the FISHERINV function.

+

FISHERINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm index e6a29cfb4c..51745063d6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm @@ -15,28 +15,35 @@

FIXED Function

-

The FIXED function is one of the text and data functions. Is used to return the text representation of a number rounded to a specified number of decimal places.

-

The FIXED function syntax is:

-

FIXED(number [,[num-decimal] [,suppress-commas-flag])

-

where

-

number is a number to round.

-

num-decimal is a number of decimal places to display. It is an optional argument, if it's omitted, the function will assume it to be 2.

-

suppress-commas-flag is a logical value. If it is set to TRUE, the function will return the result without commas. If it is FALSE or omitted, the result will be displayed with commas.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the FIXED function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the FIXED function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FIXED Function

+

The FIXED function is one of the text and data functions. Is used to return the text representation of a number rounded to a specified number of decimal places.

+

Syntax

+

FIXED(number, [decimals], [no_commas])

+

The FIXED function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberA number to round.
decimalsA number of decimal places to display. It is an optional argument, if it's omitted, the function will assume it to be 2.
no_commasA logical value. If it is set to TRUE, the function will return the result without commas. If it is FALSE or omitted, the result will be displayed with commas.
+ +

Notes

+

How to apply the FIXED function.

+ +

Examples

+

The figure below displays the result returned by the FIXED function.

+

FIXED Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-math.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-math.htm index 6ea1e86d79..9caaf30e11 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-math.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-math.htm @@ -15,28 +15,35 @@

FLOOR.MATH Function

-

The FLOOR.MATH function is one of the math and trigonometry functions. It is used to round a number down to the nearest integer or to the nearest multiple of significance.

-

The FLOOR.MATH function syntax is:

-

FLOOR.MATH(x [, [significance] [, [mode]])

-

where

-

x is the number you wish to round down.

-

significance is the multiple of significance you wish to round down to. It is an optional parameter. If it is omitted, the default value of 1 is used.

-

mode specifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded away from zero. If any other numeric value is specified, negative numbers are rounded towards zero.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the FLOOR.MATH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the FLOOR.MATH function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FLOOR.MATH Function

+

The FLOOR.MATH function is one of the math and trigonometry functions. It is used to round a number down to the nearest integer or to the nearest multiple of significance.

+

Syntax

+

FLOOR.MATH(number, [significance], [mode])

+

The FLOOR.MATH function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberA number you wish to round down.
significanceA multiple of significance you wish to round down to. It is an optional argument. If it is omitted, the default value of 1 is used.
modeSpecifies if negative numbers are rounded towards or away from zero. It is an optional parameter that does not affect positive numbers. If it is omitted or set to 0, negative numbers are rounded away from zero. If any other numeric value is specified, negative numbers are rounded towards zero.
+ +

Notes

+

How to apply the FLOOR.MATH function.

+ +

Examples

+

The figure below displays the result returned by the FLOOR.MATH function.

+

FLOOR.MATH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-precise.htm index 930872977e..f42adf4ba2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-precise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor-precise.htm @@ -15,27 +15,31 @@

FLOOR.PRECISE Function

-

The FLOOR.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance. The number is always rounded down regardless of its sing.

-

The FLOOR.PRECISE function syntax is:

-

FLOOR.PRECISE(x [, significance])

-

where

-

x is the number you wish to round down.

-

significance is the multiple of significance you wish to round down to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the FLOOR.PRECISE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the FLOOR.PRECISE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FLOOR.PRECISE Function

+

The FLOOR.PRECISE function is one of the math and trigonometry functions. It is used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance. The number is always rounded down regardless of its sing.

+

Syntax

+

FLOOR.PRECISE(number, [significance])

+

The FLOOR.PRECISE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number you wish to round down.
significanceA multiple of significance you wish to round down to. It is an optional argument. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.
+ +

Notes

+

How to apply the FLOOR.PRECISE function.

+ +

Examples

+

The figure below displays the result returned by the FLOOR.PRECISE function.

+

FLOOR.PRECISE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm index 847ee1a17d..876c738c43 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm @@ -15,28 +15,32 @@

FLOOR Function

-

The FLOOR function is one of the math and trigonometry functions. It is used to round the number down to the nearest multiple of significance.

-

The FLOOR function syntax is:

-

FLOOR(x, significance)

-

where

-

x is a number you wish to round down.

-

significance is a multiple of significance you wish to round down to.

-

Note: if the values of x and significance have different signs, the function returns the #NUM! error.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the FLOOR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the FLOOR function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FLOOR Function

+

The FLOOR function is one of the math and trigonometry functions. It is used to round the number down to the nearest multiple of significance.

+

Syntax

+

FLOOR(number, significance)

+

The FLOOR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number you wish to round down.
significanceA multiple of significance you wish to round down to.
+ +

Notes

+

If the values of x and significance have different signs, the function returns the #NUM! error.

+

How to apply the FLOOR function.

+ +

Examples

+

The figure below displays the result returned by the FLOOR function.

+

FLOOR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-confint.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-confint.htm index 1a297108a6..8ae4becb3a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-confint.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-confint.htm @@ -15,97 +15,119 @@

FORECAST.ETS.CONFINT Function

-

The FORECAST.ETS.CONFINT function is one of the statistical functions. It is used to return a confidence interval for the forecast value at the specified target date.

-

The FORECAST.ETS.CONFINT function syntax is:

-

FORECAST.ETS.CONFINT(target_date, values, timeline, [confidence_level], [seasonality], [data_completion], [aggregation])

-

where

-

target_date is a date for which you want to predict a new value. Must be after the last date in the timeline.

-

values is a range of the historical values for which you want to predict a new point.

-

timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).

-

confidence_level is a numeric value between 0 and 1 (exclusive) that specifies the confidence level for the calculated confidence interval. It is an optional argument. If it is omitted, the default value of 0.95 is used.

-

seasonality is a numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below.

- +

The FORECAST.ETS.CONFINT function is one of the statistical functions. It is used to return a confidence interval for the forecast value at the specified target date.

+

Syntax

+

FORECAST.ETS.CONFINT(target_date, values, timeline, [confidence_level], [seasonality], [data_completion], [aggregation])

+

The FORECAST.ETS.CONFINT function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueBehaviorArgumentDescription
1 or omittedtarget_dateA date for which you want to predict a new value. Must be after the last date in the timeline.
valuesA range of the historical values for which you want to predict a new point.
timelineA range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).
confidence_levelA numeric value between 0 and 1 (exclusive) that specifies the confidence level for the calculated confidence interval. It is an optional argument. If it is omitted, the default value of 0.95 is used.
seasonalityA numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below.
data_completionA numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.
aggregationA numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows.
+

The seasonality argument can be one of the following:

+ + + + + + + - + - +
Numeric valueBehavior
1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern.
00 No seasonality, the prediction will be linear.
an integer greater than or equal to 2an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern.
-

data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The data_completion argument can be one of the following:

- - + + - + - +
Numeric valueBehaviorNumeric valueBehavior
1 or omitted1 or omitted Missing points are calculated as the average of the neighbouring points.
00 Missing points are treated as zero values.
-

aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The aggregation argument can be one of the following:

- - + + - + - + - + - + - + - + - +
Numeric valueFunctionNumeric valueFunction
1 or omitted1 or omitted AVERAGE
22 COUNT
33 COUNTA
44 MAX
55 MEDIAN
66 MIN
77 SUM
-

To apply the FORECAST.ETS.CONFINT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FORECAST.ETS.CONFINT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORECAST.ETS.CONFINT Function

+

Notes

+

How to apply the FORECAST.ETS.CONFINT function.

+ +

Examples

+

The figure below displays the result returned by the FORECAST.ETS.CONFINT function.

+

FORECAST.ETS.CONFINT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-seasonality.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-seasonality.htm index 695e56ea91..a0de99d2de 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-seasonality.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-seasonality.htm @@ -15,76 +15,88 @@

FORECAST.ETS.SEASONALITY Function

-

The FORECAST.ETS.SEASONALITY function is one of the statistical functions. It is used to return the length of the repetitive pattern the application detects for the specified time series.

-

The FORECAST.ETS.SEASONALITY function syntax is:

-

FORECAST.ETS.SEASONALITY(values, timeline, [data_completion], [aggregation])

-

where

-

values is a range of the historical values for which you want to predict a new point.

-

timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).

-

data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.

- +

The FORECAST.ETS.SEASONALITY function is one of the statistical functions. It is used to return the length of the repetitive pattern the application detects for the specified time series.

+

Syntax

+

FORECAST.ETS.SEASONALITY(values, timeline, [data_completion], [aggregation])

+

The FORECAST.ETS.SEASONALITY function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + +
Numeric valueBehaviorArgumentDescription
1 or omittedvaluesA range of the historical values for which you want to predict a new point.
timelineA range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).
data_completionA numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.
aggregationA numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows.
+

The data_completion argument can be one of the following:

+ + + + + + + - +
Numeric valueBehavior
1 or omitted Missing points are calculated as the average of the neighbouring points.
00 Missing points are treated as zero values.
-

aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The aggregation argument can be one of the following:

- - + + - + - + - + - + - + - + - +
Numeric valueFunctionNumeric valueFunction
1 or omitted1 or omitted AVERAGE
22 COUNT
33 COUNTA
44 MAX
55 MEDIAN
66 MIN
77 SUM
-

To apply the FORECAST.ETS.SEASONALITY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FORECAST.ETS.SEASONALITY function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORECAST.ETS.SEASONALITY Function

+

Notes

+

How to apply the FORECAST.ETS.SEASONALITY function.

+ +

Examples

+

The figure below displays the result returned by the FORECAST.ETS.SEASONALITY function.

+

FORECAST.ETS.SEASONALITY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-stat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-stat.htm index 42092b27f0..300da2fbf2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-stat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets-stat.htm @@ -15,134 +15,154 @@

FORECAST.ETS.STAT Function

-

The FORECAST.ETS.STAT function is one of the statistical functions. It is used to return a statistical value as a result of time series forecasting. Statistic type indicates which statistic is requested by this function.

-

The FORECAST.ETS.STAT function syntax is:

-

FORECAST.ETS.STAT(values, timeline, statistic_type, [seasonality], [data_completion], [aggregation])

-

where

-

values is a range of the historical values for which you want to predict a new point.

-

timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).

-

statistic_type is a numeric value between 1 and 8 that specifies which statistic will be returned. The possible values are listed in the table below.

- +

The FORECAST.ETS.STAT function is one of the statistical functions. It is used to return a statistical value as a result of time series forecasting. Statistic type indicates which statistic is requested by this function.

+

Syntax

+

FORECAST.ETS.STAT(values, timeline, statistic_type, [seasonality], [data_completion], [aggregation])

+

The FORECAST.ETS.STAT function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueStatisticArgumentDescription
1valuesA range of the historical values for which you want to predict a new point.
timelineA range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).
statistic_typeA numeric value between 1 and 8 that specifies which statistic will be returned. The possible values are listed in the table below.
seasonalityA numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below.
data_completionA numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.
aggregationA numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows.
+

The statistic_type argument can be one of the following:

+ + + + + + + - + - + - + - + - + - + - +
Numeric valueStatistic
1 Alpha parameter of ETS algorithm - the base value parameter.
22 Beta parameter of ETS algorithm - the trend value parameter.
33 Gamma parameter of ETS algorithm - the seasonality value parameter.
44 MASE (mean absolute scaled error) metric - a measure of the accuracy of forecasts.
55 SMAPE (symmetric mean absolute percentage error) metric - a measure of the accuracy based on percentage errors.
66 MAE (mean absolute error) metric - a measure of the accuracy of forecasts.
77 RMSE (root mean squared error) metric - a measure of the differences between predicted and observed values.
88 Step size detected in the timeline.
-

seasonality is a numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below.

+

The seasonality argument can be one of the following:

- - + + - + - + - +
Numeric valueBehaviorNumeric valueBehavior
1 or omitted1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern.
00 No seasonality, the prediction will be linear.
an integer greater than or equal to 2an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern.
-

data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The data_completion argument can be one of the following:

- - + + - + - +
Numeric valueBehaviorNumeric valueBehavior
1 or omitted1 or omitted Missing points are calculated as the average of the neighbouring points.
00 Missing points are treated as zero values.
-

aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The aggregation argument can be one of the following:

- - + + - + - + - + - + - + - + - +
Numeric valueFunctionNumeric valueFunction
1 or omitted1 or omitted AVERAGE
22 COUNT
33 COUNTA
44 MAX
55 MEDIAN
66 MIN
77 SUM
-

To apply the FORECAST.ETS.STAT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FORECAST.ETS.STAT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORECAST.ETS.STAT Function

+

Notes

+

How to apply the FORECAST.ETS.STAT function.

+ +

Examples

+

The figure below displays the result returned by the FORECAST.ETS.STAT function.

+

FORECAST.ETS.STAT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets.htm index 73b7a24436..1a5a0a51a9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-ets.htm @@ -15,96 +15,115 @@

FORECAST.ETS Function

-

The FORECAST.ETS function is one of the statistical functions. It is used to calculate or predict a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm.

-

The FORECAST.ETS function syntax is:

-

FORECAST.ETS(target_date, values, timeline, [seasonality], [data_completion], [aggregation])

-

where

-

target_date is a date for which you want to predict a new value. Must be after the last date in the timeline.

-

values is a range of the historical values for which you want to predict a new point.

-

timeline is a range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).

-

seasonality is a numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below.

- +

The FORECAST.ETS function is one of the statistical functions. It is used to calculate or predict a future value based on existing (historical) values by using the AAA version of the Exponential Smoothing (ETS) algorithm.

+

Syntax

+

FORECAST.ETS(target_date, values, timeline, [seasonality], [data_completion], [aggregation])

+

The FORECAST.ETS function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueBehaviorArgumentDescription
1 or omittedtarget_dateA date for which you want to predict a new value. Must be after the last date in the timeline.
valuesA range of the historical values for which you want to predict a new point.
timelineA range of date/time values that correspond to the historical values. The timeline range must be of the same size as the values range. Date/time values must have a constant step between them (although up to 30% of missing values can be processed as specified by the data_completion argument and duplicate values can be aggregated as specified by the aggregation argument).
seasonalityA numeric value that specifies which method should be used to detect the seasonality. It is an optional argument. The possible values are listed in the table below.
data_completionA numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.
aggregationA numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table belows.
+

The seasonality argument can be one of the following:

+ + + + + + + - + - +
Numeric valueBehavior
1 or omitted Seasonality is detected automatically. Positive, whole numbers are used for the length of the seasonal pattern.
00 No seasonality, the prediction will be linear.
an integer greater than or equal to 2an integer greater than or equal to 2 The specified number is used for the length of the seasonal pattern.
-

data_completion is a numeric value that specifies how to process the missing data points in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The data_completion argument can be one of the following:

- - + + - + - +
Numeric valueBehaviorNumeric valueBehavior
1 or omitted1 or omitted Missing points are calculated as the average of the neighbouring points.
00 Missing points are treated as zero values.
-

aggregation is a numeric value that specifies which function should be used to aggregate identical time values in the timeline data range. It is an optional argument. The possible values are listed in the table below.

+

The aggregation argument can be one of the following:

- - + + - + - + - + - + - + - + - +
Numeric valueFunctionNumeric valueFunction
1 or omitted1 or omitted AVERAGE
22 COUNT
33 COUNTA
44 MAX
55 MEDIAN
66 MIN
77 SUM
-

To apply the FORECAST.ETS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FORECAST.ETS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORECAST.ETS Function

+

Notes

+

How to apply the FORECAST.ETS function.

+ +

Examples

+

The figure below displays the result returned by the FORECAST.ETS function.

+

FORECAST.ETS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm index 5380fb7fac..4cb4968437 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm @@ -15,27 +15,35 @@

FORECAST.LINEAR Function

-

The FORECAST.LINEAR function is one of the statistical functions. It is used to calculate, or predict, a future value by using existing values; the predicted value is a y-value for a given x-value. The known values are existing x-values and y-values, and the new value is predicted by using linear regression.

-

The FORECAST.LINEAR function syntax is:

-

FORECAST.LINEAR(x, known_y's, known_x's)

-

where

-

x is an x-value for which you want to predict a new y-value, a numeric value entered manually or included into the cell you make reference to.

-

known_y's is an array of known y-values.

-

known_x's is an array of known x-values.

-

To apply the FORECAST.LINEAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FORECAST.LINEAR function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORECAST.LINEAR Function

+

The FORECAST.LINEAR function is one of the statistical functions. It is used to calculate, or predict, a future value by using existing values; the predicted value is a y-value for a given x-value. The known values are existing x-values and y-values, and the new value is predicted by using linear regression.

+

Syntax

+

FORECAST.LINEAR(x, known_y's, known_x's)

+

The FORECAST.LINEAR function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xAn x-value used to predict the y-value.
known_y'sAn array of known y-values.
known_x'sAn array of known x-values.
+ +

Notes

+

How to apply the FORECAST.LINEAR function.

+ +

Examples

+

The figure below displays the result returned by the FORECAST.LINEAR function.

+

FORECAST.LINEAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm index 9209a4ea22..451abae9fb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm @@ -15,26 +15,35 @@

FORECAST Function

-

The FORECAST function is one of the statistical functions. It is used to predict a future value based on existing values provided.

-

The FORECAST function syntax is:

-

FORECAST(x, array-1, array-2)

-

where

-

x is an x-value used to predict the y-value, a numeric value entered manually or included into the cell you make reference to.

-

array-1(2) is the selected range of cells with the same number of elements.

-

To apply the FORECAST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FORECAST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORECAST Function

+

The FORECAST function is one of the statistical functions. It is used to predict a future value based on existing values provided.

+

Syntax

+

FORECAST(x, known_y's, known_x's)

+

The FORECAST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xAn x-value used to predict the y-value.
known_y'sThe dependent data range.
known_x'sThe independent data range with the same number of elements as known_y's contains.
+ +

Notes

+

How to apply the FORECAST function.

+ +

Examples

+

The figure below displays the result returned by the FORECAST function.

+

FORECAST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/formulatext.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/formulatext.htm index c3a709c67c..4333884079 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/formulatext.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/formulatext.htm @@ -15,25 +15,28 @@

FORMULATEXT Function

-

The FORMULATEXT function is one of the lookup and reference functions. It is used to return a formula as a string (i.e. the text string that is displayed in the formula bar if you select the cell that contains the formula).

-

The FORMULATEXT function syntax is:

-

FORMULATEXT(reference)

-

where reference is a reference to a single cell or a range of cells.

+

The FORMULATEXT function is one of the lookup and reference functions. It is used to return a formula as a string (i.e. the text string that is displayed in the formula bar if you select the cell that contains the formula).

+

Syntax

+

FORMULATEXT(reference)

+

The FORMULATEXT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
referenceA reference to a single cell or a range of cells.
+

Notes

If the referenced cell range contains more than one formula, the FORMULATEXT function returns the value from the upper left cell of this range. If the referenced cell does not contain a formula, the FORMULATEXT function returns the N/A error value.

-

To apply the FORMULATEXT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the FORMULATEXT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FORMULATEXT Function

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the FORMULATEXT function.

+ +

Examples

+

The figure below displays the result returned by the FORMULATEXT function.

+

FORMULATEXT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm index 199ba13720..cc84e4ede6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm @@ -15,26 +15,32 @@

FREQUENCY Function

-

The FREQUENCY function is one of the statistical functions. It is used to сalculate how often values occur within the selected range of cells and display the first value of the returned vertical array of numbers.

-

The FREQUENCY function syntax is:

-

FREQUENCY(data-array, bins-array)

-

where

-

data-array is the selected range of cells you want to count the frequencies for,

-

bins-array is the selected range of cells containing intervals into which you want to group the values in data-array.

-

To apply the FREQUENCY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FREQUENCY function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FREQUENCY Function

+

The FREQUENCY function is one of the statistical functions. It is used to сalculate how often values occur within the selected range of cells and display the first value of the returned vertical array of numbers.

+

Syntax

+

FREQUENCY(data_array, bins_array)

+

The FREQUENCY function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
data_arrayThe selected range of cells you want to count the frequencies for.
bins_arrayThe selected range of cells containing intervals into which you want to group the values in data_array.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the FREQUENCY function.

+ +

Examples

+

The figure below displays the result returned by the FREQUENCY function.

+

FREQUENCY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ftest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ftest.htm index 91b35525eb..9d80bafe14 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ftest.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ftest.htm @@ -15,27 +15,31 @@

FTEST Function

-

The FTEST function is one of the statistical functions. It is used to return the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances.

-

The FTEST function syntax is:

-

FTEST(array1, array2)

-

where

-

array1 is the first range of values.

-

array2 is the second range of values.

-

The values can be entered manually or included into the cells you make reference to. Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value.

-

To apply the FTEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the FTEST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FTEST Function

+

The FTEST function is one of the statistical functions. It is used to return the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances.

+

Syntax

+

FTEST(array1, array2)

+

The FTEST function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
array1The first range of values.
array2The second range of values.
+

Notes

+

Text, logical values and empty cells are ignored, cells that contain zero values are included. If the number of values in a data range is less than 2 or a variance of an array is 0, the function returns the #DIV/0! error value.

+

How to apply the FTEST function.

+ +

Examples

+

The figure below displays the result returned by the FTEST function.

+

FTEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm index 7fb0499b85..08f68dc551 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm @@ -15,31 +15,44 @@

FV Function

-

The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule.

-

The FV function syntax is:

-

FV(rate, nper, pmt [, [pv] [,[type]]])

-

where

-

rate is the interest rate for the investment.

-

nper is a number of payments.

-

pmt is a payment amount.

-

pv is a present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0.

-

type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the FV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the FV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FV Function

+

The FV function is one of the financial functions. It is used to calculate the future value of an investment based on a specified interest rate and a constant payment schedule.

+

Syntax

+

FV(rate, nper, pmt, [pv], [type])

+

The FV function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate for the investment.
nperA number of payments.
pmtA payment amount.
pvA present value of the payments. It is an optional argument. If it is omitted, the function will assume pv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the FV function.

+ +

Examples

+

The figure below displays the result returned by the FV function.

+

FV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm index 454f532fc7..06758d6f08 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm @@ -15,28 +15,32 @@

FVSCHEDULE Function

-

The FVSCHEDULE function is one of the financial functions. It is used to calculate the future value of an investment based on a series of changeable interest rates.

-

The FVSCHEDULE function syntax is:

-

FVSCHEDULE(principal, schedule)

-

where

-

principal is the current value of an investment.

-

schedule is an array or a range of interest rates.

-

Note: schedule values can be numbers or empty cells (they are interpreted as 0).

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the FVSCHEDULE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the FVSCHEDULE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

FVSCHEDULE Function

+

The FVSCHEDULE function is one of the financial functions. It is used to calculate the future value of an investment based on a series of changeable interest rates.

+

Syntax

+

FVSCHEDULE(principal, schedule)

+

The FVSCHEDULE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
principalThe current value of an investment.
scheduleAn array or a range of interest rates.
+ +

Notes

+

Schedule values can be numbers or empty cells (they are interpreted as 0).

+

How to apply the FVSCHEDULE function.

+ +

Examples

+

The figure below displays the result returned by the FVSCHEDULE function.

+

FVSCHEDULE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm index d96988b0ce..a5012783ec 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm @@ -15,29 +15,39 @@

GAMMA.DIST Function

-

The GAMMA.DIST function is one of the statistical functions. It is used to return the gamma distribution.

-

The GAMMA.DIST function syntax is:

-

GAMMA.DIST(x, alpha, beta, cumulative)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the GAMMA.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMA.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAMMA.DIST Function

+

The GAMMA.DIST function is one of the statistical functions. It is used to return the gamma distribution.

+

Syntax

+

GAMMA.DIST(x, alpha, beta, cumulative)

+

The GAMMA.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+ +

Notes

+

How to apply the GAMMA.DIST function.

+ +

Examples

+

The figure below displays the result returned by the GAMMA.DIST function.

+

GAMMA.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm index 87a1442ed0..e31de923d0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm @@ -15,28 +15,35 @@

GAMMA.INV Function

-

The GAMMA.INV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution.

-

The GAMMA.INV function syntax is:

-

GAMMA.INV(probability, alpha, beta)

-

where

-

probability is the probability associated with the gamma distribution. A numeric value greater than 0 but less than 1.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the GAMMA.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMA.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAMMA.INV Function

+

The GAMMA.INV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution.

+

Syntax

+

GAMMA.INV(probability, alpha, beta)

+

The GAMMA.INV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the gamma distribution. A numeric value greater than 0 but less than 1.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.
+ +

Notes

+

How to apply the GAMMA.INV function.

+ +

Examples

+

The figure below displays the result returned by the GAMMA.INV function.

+

GAMMA.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm index 462ef5a2fe..b2026a85fe 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm @@ -15,25 +15,27 @@

GAMMA Function

-

The GAMMA function is one of the statistical functions. It is used to return the gamma function value.

-

The GAMMA function syntax is:

-

GAMMA(number)

-

where number is a numeric value entered manually or included into the cell you make reference to.

-

Note: if the number is a negative integer or 0 the function returns the #NUM! error value.

-

To apply the GAMMA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMA function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

+

The GAMMA function is one of the statistical functions. It is used to return the gamma function value.

+

Syntax

+

GAMMA(number)

+

The GAMMA function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value.
+

Notes

+

If the number is a negative integer or 0 the function returns the #NUM! error value.

+

How to apply the GAMMA function.

+ +

Examples

+

The figure below displays the result returned by the GAMMA function.

+

GAMMA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm index 2b6d21e550..21598d6bbe 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm @@ -15,29 +15,39 @@

GAMMADIST Function

-

The GAMMADIST function is one of the statistical functions. It is used to return the gamma distribution.

-

The GAMMADIST function syntax is:

-

GAMMADIST(x, alpha, beta, cumulative)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the GAMMADIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMADIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAMMADIST Function

+

The GAMMADIST function is one of the statistical functions. It is used to return the gamma distribution.

+

Syntax

+

GAMMADIST(x, alpha, beta, cumulative)

+

The GAMMADIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+ +

Notes

+

How to apply the GAMMADIST function.

+ +

Examples

+

The figure below displays the result returned by the GAMMADIST function.

+

GAMMADIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm index 2af1c8b26c..102f33ee9d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm @@ -15,28 +15,35 @@

GAMMAINV Function

-

The GAMMAINV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution.

-

The GAMMAINV function syntax is:

-

GAMMAINV(probability, alpha, beta)

-

where

-

probability is the probability associated with the gamma distribution. A numeric value greater than 0 but less than 1.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the GAMMAINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMAINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAMMAINV Function

+

The GAMMAINV function is one of the statistical functions. It is used to return the inverse of the gamma cumulative distribution.

+

Syntax

+

GAMMAINV(probability, alpha, beta)

+

The GAMMAINV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the gamma distribution. A numeric value greater than 0 but less than 1.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0. If beta is 1, the function returns the standard gamma distribution.
+ +

Notes

+

How to apply the GAMMAINV function.

+ +

Examples

+

The figure below displays the result returned by the GAMMAINV function.

+

GAMMAINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm index 39510b0e05..6bdd5e5fb6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm @@ -15,24 +15,26 @@

GAMMALN.PRECISE Function

-

The GAMMALN.PRECISE function is one of the statistical functions. It is used to return the natural logarithm of the gamma function.

-

The GAMMALN.PRECISE function syntax is:

-

GAMMALN.PRECISE(x)

-

where x is a numeric value greater than 0 entered manually or included into the cell you make reference to.

-

To apply the GAMMALN.PRECISE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMALN.PRECISE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAMMALN.PRECISE Function

+

The GAMMALN.PRECISE function is one of the statistical functions. It is used to return the natural logarithm of the gamma function.

+

Syntax

+

GAMMALN.PRECISE(x)

+

The GAMMALN.PRECISE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
xA numeric value greater than 0.
+

Notes

+

How to apply the GAMMALN.PRECISE function.

+ +

Examples

+

The figure below displays the result returned by the GAMMALN.PRECISE function.

+

GAMMALN.PRECISE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm index 2417945a21..12ef2fe5a2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm @@ -15,24 +15,26 @@

GAMMALN Function

-

The GAMMALN function is one of the statistical functions. It is used to return the natural logarithm of the gamma function.

-

The GAMMALN function syntax is:

-

GAMMALN(number)

-

where number is a numeric value greater than 0 entered manually or included into the cell you make reference to.

-

To apply the GAMMALN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAMMALN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAMMALN Function

+

The GAMMALN function is one of the statistical functions. It is used to return the natural logarithm of the gamma function.

+

Syntax

+

GAMMALN(x)

+

The GAMMALN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
xA numeric value greater than 0.
+

Notes

+

How to apply the GAMMALN function.

+ +

Examples

+

The figure below displays the result returned by the GAMMALN function.

+

GAMMALN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm index 38d9fbe0e9..150c9cab4b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm @@ -15,24 +15,26 @@

GAUSS Function

-

The GAUSS function is one of the statistical functions. It is used to calculate the probability that a member of a standard normal population will fall between the mean and z standard deviations from the mean.

-

The GAUSS function syntax is:

-

GAUSS(z)

-

where z is a numeric value entered manually or included into the cell you make reference to.

-

To apply the GAUSS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GAUSS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GAUSS Function

+

The GAUSS function is one of the statistical functions. It is used to calculate the probability that a member of a standard normal population will fall between the mean and z standard deviations from the mean.

+

Syntax

+

GAUSS(z)

+

The GAUSS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
zA numeric value.
+

Notes

+

How to apply the GAUSS function.

+ +

Examples

+

The figure below displays the result returned by the GAUSS function.

+

GAUSS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm index 208a78ab0d..2c5c78bdd1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm @@ -15,24 +15,27 @@

GCD Function

-

The GCD function is one of the math and trigonometry functions. It is used to return the greatest common divisor of two or more numbers.

-

The GCD function syntax is:

-

GCD(argument-list)

-

where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to.

-

To apply the GCD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the GCD function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GCD Function

+

The GCD function is one of the math and trigonometry functions. It is used to return the greatest common divisor of two or more numbers.

+

Syntax

+

GCD(number1, [number2], ...)

+

The GCD function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to get the greatest common divisor.
+ +

Notes

+

How to apply the GCD function.

+ +

Examples

+

The figure below displays the result returned by the GCD function.

+

GCD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm index 7d2c504a71..32c899064f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm @@ -15,24 +15,27 @@

GEOMEAN Function

-

The GEOMEAN function is one of the statistical functions. It is used to calculate the geometric mean of the argument list.

-

The GEOMEAN function syntax is:

-

GEOMEAN(argument-list)

-

where argument-list is up to 30 numerical values greater than 0 entered manually or included into the cells you make reference to.

-

To apply the GEOMEAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GEOMEAN function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GEOMEAN Function

+

The GEOMEAN function is one of the statistical functions. It is used to calculate the geometric mean of the argument list.

+

Syntax

+

GEOMEAN(number1, [number2], ...)

+

The GEOMEAN function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to get the geometric mean.
+ +

Notes

+

How to apply the GEOMEAN function.

+ +

Examples

+

The figure below displays the result returned by the GEOMEAN function.

+

GEOMEAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm index e81b99cb87..58cc91989c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm @@ -15,27 +15,31 @@

GESTEP Function

-

The GESTEP function is one of the engineering functions. It is used to test if a number is greater than a threshold value. The function returns 1 if the number is greater than or equal to the threshold value and 0 otherwise.

-

The GESTEP function syntax is:

-

GESTEP(number [, step])

-

where

-

number is a number to compare with step.

-

step is a threshold value. It is an optional argument. If it is omitted, the function will assume step to be 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the GESTEP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the GESTEP function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GESTEP Function

+

The GESTEP function is one of the engineering functions. It is used to test if a number is greater than a threshold value. The function returns 1 if the number is greater than or equal to the threshold value and 0 otherwise.

+

Syntax

+

GESTEP(number, [step])

+

The GESTEP function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number to compare with step.
stepA threshold value. It is an optional argument. If it is omitted, the function will assume step to be 0.
+ +

Notes

+

How to apply the GESTEP function.

+ +

Examples

+

The figure below displays the result returned by the GESTEP function.

+

GESTEP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/growth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/growth.htm index f56cc42ad3..dfb402e13d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/growth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/growth.htm @@ -15,30 +15,40 @@

GROWTH Function

-

The GROWTH function is one of the statistical functions. It is used to calculate predicted exponential growth by using existing data.

-

The GROWTH function syntax is:

-

GROWTH(known_y’s, [known_x’s], [new_x’s], [const])

-

where

-

known_y’s is the set of y-values you already know in the y = b*m^x equation.

-

known_x’s is the optional set of x-values you might know in the y = b*m^x equation.

-

new_x’s is the optional set of x-values you want y-values to be returned to.

-

const is an optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation.

- -

To apply the GROWTH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the GROWTH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

GROWTH Function

+

The GROWTH function is one of the statistical functions. It is used to calculate predicted exponential growth by using existing data.

+

Syntax

+

GROWTH(known_y’s, [known_x’s], [new_x’s], [const])

+

The GROWTH function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
known_y’sThe set of y-values you already know in the y = b*m^x equation.
known_x’sThe optional set of x-values you might know in the y = b*m^x equation.
new_x’sThe optional set of x-values you want y-values to be returned to.
constAn optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the GROWTH function.

+ +

Examples

+

The figure below displays the result returned by the GROWTH function.

+

GROWTH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm index c505125823..8386960061 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm @@ -15,24 +15,27 @@

HARMEAN Function

-

The HARMEAN function is one of the statistical functions. It is used to calculate the harmonic mean of the argument list.

-

The HARMEAN function syntax is:

-

HARMEAN(argument-list)

-

where argument-list is up to 30 numerical values greater than 0 entered manually or included into the cells you make reference to.

-

To apply the HARMEAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the HARMEAN function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HARMEAN Function

+

The HARMEAN function is one of the statistical functions. It is used to calculate the harmonic mean of the argument list.

+

Syntax

+

HARMEAN(number1, [number2], ...)

+

The HARMEAN function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to get the harmonic mean.
+ +

Notes

+

How to apply the HARMEAN function.

+ +

Examples

+

The figure below displays the result returned by the HARMEAN function.

+

HARMEAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm index db919466de..f49d82476f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm @@ -15,27 +15,32 @@

HEX2BIN Function

-

The HEX2BIN function is one of the engineering functions. It is used to convert a hexadecimal number to a binary number.

-

The HEX2BIN function syntax is:

-

HEX2BIN(number [, num-hex-digits])

-

where

-

number is a hexadecimal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the HEX2BIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the HEX2BIN function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HEX2BIN Function

+

The HEX2BIN function is one of the engineering functions. It is used to convert a hexadecimal number to a binary number.

+

Syntax

+

HEX2BIN(number, [places])

+

The HEX2BIN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA hexadecimal number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+ +

Notes

+

If the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the HEX2BIN function.

+ +

Examples

+

The figure below displays the result returned by the HEX2BIN function.

+

HEX2BIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm index 1b41a04eeb..c2a16f1ae2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm @@ -15,26 +15,27 @@

HEX2DEC Function

-

The HEX2DEC function is one of the engineering functions. It is used to convert a hexadecimal number into a decimal number.

-

The HEX2DEC function syntax is:

-

HEX2DEC(number)

-

where

-

number is a hexadecimal number entered manually or included into the cell you make reference to.

-

Note: if the argument is not recognised as a hexadecimal number, or contains more than 10 characters, the function will return the #NUM! error.

-

To apply the HEX2DEC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the HEX2DEC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HEX2DEC Function

+

The HEX2DEC function is one of the engineering functions. It is used to convert a hexadecimal number into a decimal number.

+

Syntax

+

HEX2DEC(number)

+

The HEX2DEC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA hexadecimal number entered manually or included into the cell you make reference to.
+

Notes

+

If the argument is not recognised as a hexadecimal number, or contains more than 10 characters, the function will return the #NUM! error.

+

How to apply the HEX2DEC function.

+ +

Examples

+

The figure below displays the result returned by the HEX2DEC function.

+

HEX2DEC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm index 73f6c40cef..de2c290f4d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm @@ -15,27 +15,32 @@

HEX2OCT Function

-

The HEX2OCT function is one of the engineering functions. It is used to convert a hexadecimal number to an octal number.

-

The HEX2OCT function syntax is:

-

HEX2OCT(number [, num-hex-digits])

-

where

-

number is a hexadecimal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the HEX2OCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the HEX2OCT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HEX2OCT Function

+

The HEX2OCT function is one of the engineering functions. It is used to convert a hexadecimal number to an octal number.

+

Syntax

+

HEX2OCT(number, [places])

+

The HEX2OCT function has the following arguments:

+ + + + + + + + + + + + + + +
ArgumentDescription
numberA hexadecimal number entered manually or included into the cell you make reference to.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+

Notes

+

If the argument is not recognised as a hexadecimal number, or contains more than 10 characters, or the resulting octal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the HEX2OCT function.

+ +

Examples

+

The figure below displays the result returned by the HEX2OCT function.

+

HEX2OCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm index b44ca4a6f8..8a6022187a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm @@ -15,29 +15,39 @@

HLOOKUP Function

-

The HLOOKUP function is one of the lookup and reference functions. It is used to perform the horizontal search for a value in the top row of a table or an array and return the value in the same column based on a specified row index number.

-

The HLOOKUP function syntax is:

-

HLOOKUP (lookup-value, table-array, row-index-num[, [range-lookup-flag]])

-

where

-

lookup-value is a value to search for.

-

table-array are two or more rows containing data sorted in ascending order.

-

row-index-num is a row number in the same column of the table-array, a numeric value greater than or equal to 1 but less than the number of rows in the table-array.

-

range-lookup-flag is an optional argument. It is a logical value: TRUE or FALSE. Enter FALSE to find an exact match. Enter TRUE to find an approximate match, in this case if there is not a value that strictly matches the lookup-value, then the function will choose the next largest value less than the lookup-value. If this argument is absent, the function will find an approximate match.

-

If the range-lookup-flag is set to FALSE, but no exact match is found, then the function will return the #N/A error.

-

How to use HLOOKUP

-

To apply the HLOOKUP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the HLOOKUP function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

+

The HLOOKUP function is one of the lookup and reference functions. It is used to perform the horizontal search for a value in the top row of a table or an array and return the value in the same column based on a specified row index number.

+

Syntax

+

HLOOKUP (lookup_value, table_array, row_index_num, [range_lookup])

+

The HLOOKUP function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
lookup_valueA value to search for.
table_arrayTwo or more rows containing data sorted in ascending order.
row_index_numA row number in the same column of the table_array, a numeric value greater than or equal to 1 but less than the number of rows in the table_array.
range_lookupAn optional argument. It is a logical value: TRUE or FALSE. Enter FALSE to find an exact match. Enter TRUE to find an approximate match, in this case if there is not a value that strictly matches the lookup_value, then the function will choose the next largest value less than the lookup_value. If this argument is absent, the function will find an approximate match.
+ +

Notes

+

If the range_lookup is set to FALSE, but no exact match is found, then the function will return the #N/A error.

+

How to apply the HLOOKUP function.

+ +

Examples

+

The figure below displays the result returned by the HLOOKUP function.

hlookup function gif

diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm index f659f9c8be..917db0ea8c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm @@ -15,25 +15,27 @@

HOUR Function

-

The HOUR function is one of the date and time functions. It returns the hour (a number from 0 to 23) of the time value.

-

The HOUR function syntax is:

-

HOUR( time-value )

-

where time-value is a value entered manually or included into the cell you make reference to.

-

Note: the time-value may be expressed as a string value (e.g. "13:39"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39)

-

To apply the HOUR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the HOUR function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HOUR Function

+

The HOUR function is one of the date and time functions. It returns the hour (a number from 0 to 23) of the time value.

+

Syntax

+

HOUR(serial_number)

+

The HOUR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
serial_numberThe time value that contains the hour you want to find.
+

Notes

+

The serial_number may be expressed as a string value (e.g. "13:39"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39)

+

How to apply the HOUR function.

+ +

Examples

+

The figure below displays the result returned by the HOUR function.

+

HOUR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hstack.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hstack.htm index 896d3c30f9..6eaf8b44c6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hstack.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hstack.htm @@ -15,27 +15,27 @@

HSTACK Function

-

The HSTACK function is one of the lookup and reference functions. It is used to horizontally stack arrays into one array.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The HSTACK function syntax is:

-

HSTACK (array1, [array2], ...)

-

where

-

array is used to set the arrays to append.

-

To apply the HSTACK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the HSTACK function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The HSTACK function is one of the lookup and reference functions. It is used to horizontally stack arrays into one array.

+

Syntax

+

HSTACK (array1, [array2], ...)

+

The HSTACK function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
array1/2/nIs used to set the arrays to append.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the HSTACK function.

+ +

Examples

+

The figure below displays the result returned by the HSTACK function.

+

HSTACK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hyperlink.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hyperlink.htm index 2f8c07b97c..8ec3887f2b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hyperlink.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hyperlink.htm @@ -1,7 +1,7 @@  - HYPERLINLK Function + HYPERLINK Function @@ -14,29 +14,34 @@
-

HYPERLINLK Function

-

The HYPERLINLK function is one of the lookup and reference functions. It is used to create a shortcut that jumps to another location in the current workbook, or opens a document stored on a network server, an intranet, or the Internet.

-

The HYPERLINLK function syntax is:

-

HYPERLINLK(link_location [, friendly_name])

-

where

-

link_location is the path and file name to the document to be opened. In the online version, the path can be a URL address only. link_location can also refer to a certain place in the current workbook, for example, to a certain cell or a named range. The value can be specified as a text string enclosed to the quotation marks or a reference to a cell containing the link as a text string.

-

friendly_name is a text displayed in the cell. It is an optional value. If it is omitted, the link_location value is displayed in the cell.

- -

To apply the HYPERLINLK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the HYPERLINLK function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

+

HYPERLINK Function

+

The HYPERLINK function is one of the lookup and reference functions. It is used to create a shortcut that jumps to another location in the current workbook, or opens a document stored on a network server, an intranet, or the Internet.

+

Syntax

+

HYPERLINK(link_location, [friendly_name])

+

The HYPERLINK function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
link_locationThe path and file name to the document to be opened. In the online version, the path can be a URL address only. link_location can also refer to a certain place in the current workbook, for example, to a certain cell or a named range. The value can be specified as a text string enclosed to the quotation marks or a reference to a cell containing the link as a text string.
friendly_nameA text displayed in the cell. It is an optional argument. If it is omitted, the link_location value is displayed in the cell.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the HYPERLINK function.

+ +

Examples

+

The figure below displays the result returned by the HYPERLINK function.

To open the link click on it. To select a cell that contains a link without opening the link click and hold the mouse button.

-

HYPERLINLK Function

+

HYPERLINK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeom-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeom-dist.htm index f4f8178e52..01bbe7f7ea 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeom-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeom-dist.htm @@ -15,30 +15,43 @@

HYPGEOM.DIST Function

-

The HYPGEOM.DIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size.

-

The HYPGEOM.DIST function syntax is:

-

HYPGEOM.DIST(sample_s, number_sample, population_s, number_pop, cumulative)

-

where

-

sample_s is the number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number_sample or population_s.

-

number_sample - the size of the sample, a numeric value greater than 0, but less than number_pop.

-

population_s - the number of the successes in the population, a numeric value greater than 0, but less than number_pop.

-

number_pop - the size of the population, a numeric value greater than 0.

-

cumulative - is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the HYPGEOM.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the HYPGEOM.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HYPGEOM.DIST Function

+

The HYPGEOM.DIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size.

+

Syntax

+

HYPGEOM.DIST(sample_s, number_sample, population_s, number_pop, cumulative)

+

The HYPGEOM.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
sample_sThe number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number_sample or population_s.
number_sampleThe size of the sample, a numeric value greater than 0, but less than number_pop.
population_sThe number of the successes in the population, a numeric value greater than 0, but less than number_pop.
number_popThe size of the population, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.
+ +

Notes

+

How to apply the HYPGEOM.DIST function.

+ +

Examples

+

The figure below displays the result returned by the HYPGEOM.DIST function.

+

HYPGEOM.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm index bac738ca56..a5214080af 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm @@ -15,29 +15,43 @@

HYPGEOMDIST Function

-

The HYPGEOMDIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size.

-

The HYPGEOMDIST function syntax is:

-

HYPGEOMDIST(sample-successes , number-sample , population-successes , number-population)

-

where

-

sample-successes is the number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number-sample or population-successes.

-

number-sample - the size of the sample, a numeric value greater than 0, but less than number-population.

-

population-successes - the number of the successes in the population, a numeric value greater than 0, but less than number-population.

-

number-population - the size of the population, a numeric value greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the HYPGEOMDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the HYPGEOMDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

HYPGEOMDIST Function

+

The HYPGEOMDIST function is one of the statistical functions. It is used to return the hypergeometric distribution, the probability of a given number of sample successes, given the sample size, population successes, and population size.

+

Syntax

+

HYPGEOMDIST(sample_s, number_sample, population_s, number_pop, cumulative)

+

The HYPGEOMDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
sample_sThe number of the successes in the given sample, a numeric value greater than 0, but less than the lesser of number_sample or population_s.
number_sampleThe size of the sample, a numeric value greater than 0, but less than number_pop.
population_sThe number of the successes in the population, a numeric value greater than 0, but less than number_pop.
number_popThe size of the population, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.
+ +

Notes

+

How to apply the HYPGEOMDIST function.

+ +

Examples

+

The figure below displays the result returned by the HYPGEOMDIST function.

+

HYPGEOMDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm index 63aa6a9fb7..61e4e6e21a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm @@ -15,28 +15,37 @@

IF Function

-

The IF function is one of the logical functions. Is used to check the logical expression and return one value if it is TRUE, or another if it is FALSE.

-

The IF function syntax is:

-

IF(logical_test, value_if_true, value_if_false)

-

where logical_test, value_if_true, value_if_false are values entered manually or included into the cell you make reference to.

-

To apply the IF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the IF function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

There are three arguments: logical_test = A1<100, value_if_true = 0, value_if_false = 1, where A1 is 12. This logical expression is TRUE. So the function returns 0.

-

IF Function: TRUE

+

The IF function is one of the logical functions. Is used to check the logical expression and return one value if it is TRUE, or another if it is FALSE.

+

Syntax

+

IF(logical_test, value_if_true, [value_if_false])

+

The IF function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
logical_testThe condition that you want to test.
value_if_trueThe value to be returned if the result is TRUE.
value_if_falseThe value to be returned if the result is FALSE.
+ +

Notes

+

How to apply the IF function.

+ +

Examples

+

There are three arguments: logical_test = A1<100, value_if_true = 0, value_if_false = 1, where A1 is 12. This logical expression is TRUE. So the function returns 0.

+

IF Function: TRUE

If we change the A1 value from 12 to 112, the function returns 1:

-

IF Function: FALSE

+

IF Function: FALSE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm index c9a9dd40dc..e0f1a29155 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm @@ -15,26 +15,30 @@

IFERROR Function

-

The IFERROR function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the result of the formula if there is no error, or the value_if_error if there is one.

-

The IFERROR function syntax is:

-

IFERROR(value, value_if_error,)

-

where value and value_if_error are values entered manually or included into the cell you make reference to.

-

How to use IFERROR

-

To apply the IFERROR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the IFERROR function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

You have a list of available item stock and its overall value. To learn unit price, we will use the IFERROR function to see if there are any errors. The arguments are as follows: value = B2/A2, value_if_error = "Out of stock". The formula in the first argument does not contain any errors for cells C2:C9 and C11:C14 so the function returns the result of the calculation. However, it is the opposite for C10 and C11 since the formula tries to divide by zero, hence, we get "Out of stock" as a result.

+

The IFERROR function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the result of the formula if there is no error, or the value_if_error if there is one.

+

Syntax

+

IFERROR(value, value_if_error)

+

The IFERROR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
valueThe value that is checked for an error.
value_if_errorThe value to be returned if the formula evaluates to an error. The following errors are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, #NULL!.
+ +

Notes

+

How to apply the IFERROR function.

+ +

Examples

+

You have a list of available item stock and its overall value. To learn unit price, we will use the IFERROR function to see if there are any errors. The arguments are as follows: value = B2/A2, value_if_error = "Out of stock". The formula in the first argument does not contain any errors for cells C2:C9 and C11:C14 so the function returns the result of the calculation. However, it is the opposite for C10 and C11 since the formula tries to divide by zero, hence, we get "Out of stock" as a result.

IFERROR Function: if error

diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm index 604b691d74..4cacf6352a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm @@ -15,27 +15,31 @@

IFNA Function

-

The IFNA function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the value you specify if the formula returns the #N/A error value, otherwise returns the result of the formula.

-

The IFNA function syntax is:

-

IFNA(value, value_if_na)

-

where

-

value is the argument that is checked for the #N/A error value.

-

value_if_na is the value to return if the formula evaluates to the #N/A error value.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the IFNA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the IFNA function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IFNA Function

+

The IFNA function is one of the logical functions. It is used to check if there is an error in the formula in the first argument. The function returns the value you specify if the formula returns the #N/A error value, otherwise returns the result of the formula.

+

Syntax

+

IFNA(value, value_if_na)

+

The IFNA function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
valueThe argument that is checked for the #N/A error value.
value_if_naThe value to return if the formula evaluates to the #N/A error value.
+ +

Notes

+

How to apply the IFNA function.

+ +

Examples

+

The figure below displays the result returned by the IFNA function.

+

IFNA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ifs.htm index 3ba4ff35de..617aeeb170 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ifs.htm @@ -15,31 +15,35 @@

IFS Function

-

The IFS function is one of the logical functions. It checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.

-

The IFS function syntax is:

-

IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], ...)

-

where

-

logical_test1 is the first condition to be evaluated to TRUE or FALSE.

-

value_if_true1 is the value that returns if the logical_test1 is TRUE.

-

logical_test2, value_if_true2, ... are additional conditions and values to return. These arguments are optional. You can check up to 127 conditions.

-

The values can be entered manually or included into the cell you make reference to.

-

How to use IFS

-

To apply the IFS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the IFS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

There are the following arguments: logical_test1 = A1<100, value_if_true1 = 1, logical_test2 = A1>100, value_if_true2 = 2, where A1 is 120. The second logical expression is TRUE. So the function returns 2.

-

IFS Function

+

The IFS function is one of the logical functions. It checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.

+

Syntax

+

IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], ...)

+

The IFS function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
logical_test1The first condition to be evaluated to TRUE or FALSE.
value_if_true1The value that returns if the logical_test1 is TRUE.
logical_test2, value_if_true2, ...Additional conditions and values to return. These arguments are optional. You can check up to 127 conditions.
+ +

Notes

+

How to apply the IFS function.

+ +

Examples

+

There are the following arguments: logical_test1 = A1<100, value_if_true1 = 1, logical_test2 = A1>100, value_if_true2 = 2, where A1 is 120. The second logical expression is TRUE. So the function returns 2.

+

IFS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm index 180f077e5d..bc289dc5a3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm @@ -15,24 +15,27 @@

IMABS Function

-

The IMABS function is one of the engineering functions. It is used to return the absolute value of a complex number.

-

The IMABS function syntax is:

-

IMABS(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMABS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMABS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMABS Function

+

The IMABS function is one of the engineering functions. It is used to return the absolute value of a complex number.

+

Syntax

+

IMABS(inumber)

+

The IMABS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+ +

Notes

+

How to apply the IMABS function.

+ +

Examples

+

The figure below displays the result returned by the IMABS function.

+

IMABS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm index ae3b8b52b3..f3a35cf987 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm @@ -15,24 +15,26 @@

IMAGINARY Function

-

The IMAGINARY function is one of the engineering functions. It is used to return the imaginary part of the specified complex number.

-

The IMAGINARY function syntax is:

-

IMAGINARY(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMAGINARY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMAGINARY function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMAGINARY Function

+

The IMAGINARY function is one of the engineering functions. It is used to return the imaginary part of the specified complex number.

+

Syntax

+

IMAGINARY(inumber)

+

The IMAGINARY function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMAGINARY function.

+ +

Examples

+

The figure below displays the result returned by the IMAGINARY function.

+

IMAGINARY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm index 5735933df1..08a803be0f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm @@ -15,24 +15,26 @@

IMARGUMENT Function

-

The IMARGUMENT function is one of the engineering functions. It is used to return the argument Theta, an angle expressed in radians.

-

The IMARGUMENT function syntax is:

-

IMARGUMENT(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMARGUMENT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMARGUMENT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMARGUMENT Function

+

The IMARGUMENT function is one of the engineering functions. It is used to return the argument Theta, an angle expressed in radians.

+

Syntax

+

IMARGUMENT(inumber)

+

The IMARGUMENT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMARGUMENT function.

+ +

Examples

+

The figure below displays the result returned by the IMARGUMENT function.

+

IMARGUMENT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm index d68f7508b5..cd0913fbc6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm @@ -15,24 +15,26 @@

IMCONJUGATE Function

-

The IMCONJUGATE function is one of the engineering functions. It is used to return the complex conjugate of a complex number.

-

The IMCONJUGATE function syntax is:

-

IMCONJUGATE(complex-number)

-

where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMCONJUGATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMCONJUGATE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMCONJUGATE Function

+

The IMCONJUGATE function is one of the engineering functions. It is used to return the complex conjugate of a complex number.

+

Syntax

+

IMCONJUGATE(inumber)

+

The IMCONJUGATE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMCONJUGATE function.

+ +

Examples

+

The figure below displays the result returned by the IMCONJUGATE function.

+

IMCONJUGATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm index 5753e618a0..02ee36aaba 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm @@ -15,24 +15,26 @@

IMCOS Function

-

The IMCOS function is one of the engineering functions. It is used to return the cosine of a complex number.

-

The IMCOS function syntax is:

-

IMCOS(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMCOS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMCOS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMCOS Function

+

The IMCOS function is one of the engineering functions. It is used to return the cosine of a complex number.

+

Syntax

+

IMCOS(inumber)

+

The IMCOS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMCOS function.

+ +

Examples

+

The figure below displays the result returned by the IMCOS function.

+

IMCOS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm index 026cc4b7b4..cd37c7086c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm @@ -15,24 +15,26 @@

IMCOSH Function

-

The IMCOSH function is one of the engineering functions. It is used to return the hyperbolic cosine of a complex number.

-

The IMCOSH function syntax is:

-

IMCOSH(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMCOSH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMCOSH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMCOSH Function

+

The IMCOSH function is one of the engineering functions. It is used to return the hyperbolic cosine of a complex number.

+

Syntax

+

IMCOSH(inumber)

+

The IMCOSH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMCOSH function.

+ +

Examples

+

The figure below displays the result returned by the IMCOSH function.

+

IMCOSH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm index 645bd5bdbb..6a3b72b8d8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm @@ -15,24 +15,26 @@

IMCOT Function

-

The IMCOT function is one of the engineering functions. It is used to return the cotangent of a complex number.

-

The IMCOT function syntax is:

-

IMCOT(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMCOT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMCOT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMCOT Function

+

The IMCOT function is one of the engineering functions. It is used to return the cotangent of a complex number.

+

Syntax

+

IMCOT(inumber)

+

The IMCOT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMCOT function.

+ +

Examples

+

The figure below displays the result returned by the IMCOT function.

+

IMCOT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm index 11773334fe..a30dd603c4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm @@ -15,24 +15,26 @@

IMCSC Function

-

The IMCSC function is one of the engineering functions. It is used to return the cosecant of a complex number.

-

The IMCSC function syntax is:

-

IMCSC(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMCSC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMCSC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMCSC Function

+

The IMCSC function is one of the engineering functions. It is used to return the cosecant of a complex number.

+

Syntax

+

IMCSC(inumber)

+

The IMCSC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMCSC function.

+ +

Examples

+

The figure below displays the result returned by the IMCSC function.

+

IMCSC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm index 9328c68c29..6bfd069c5f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm @@ -15,24 +15,26 @@

IMCSCH Function

-

The IMCSCH function is one of the engineering functions. It is used to return the hyperbolic cosecant of a complex number.

-

The IMCSCH function syntax is:

-

IMCSCH(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMCSCH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMCSCH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMCSCH Function

+

The IMCSCH function is one of the engineering functions. It is used to return the hyperbolic cosecant of a complex number.

+

Syntax

+

IMCSCH(inumber)

+

The IMCSCH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMCSCH function.

+ +

Examples

+

The figure below displays the result returned by the IMCSCH function.

+

IMCSCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm index c5b924321d..0095175885 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm @@ -15,27 +15,30 @@

IMDIV Function

-

The IMDIV function is one of the engineering functions. It is used to return the quotient of two complex numbers expressed in x + yi or x + yj form.

-

The IMDIV function syntax is:

-

IMDIV(complex-number-1, complex-number-2)

-

where

-

complex-number-1 is a dividend.

-

complex-number-2 is a divisor.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the IMDIV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMDIV function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMDIV Function

+

The IMDIV function is one of the engineering functions. It is used to return the quotient of two complex numbers expressed in x + yi or x + yj form.

+

Syntax

+

IMDIV(inumber1, inumber2)

+

The IMDIV function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
inumber1A dividend.
inumber2A divisor.
+

Notes

+

How to apply the IMDIV function.

+ +

Examples

+

The figure below displays the result returned by the IMDIV function.

+

IMDIV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm index c8d5ec5c28..82fb24bb2e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm @@ -15,24 +15,26 @@

IMEXP Function

-

The IMEXP function is one of the engineering functions. It is used to return the e constant raised to the to the power specified by a complex number. The e constant is equal to 2,71828182845904.

-

The IMEXP function syntax is:

-

IMEXP(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMEXP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMEXP function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMEXP Function

+

The IMEXP function is one of the engineering functions. It is used to return the e constant raised to the to the power specified by a complex number. The e constant is equal to 2,71828182845904.

+

Syntax

+

IMEXP(inumber)

+

The IMEXP function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMEXP function.

+ +

Examples

+

The figure below displays the result returned by the IMEXP function.

+

IMEXP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm index 726c6b6c18..4ebfe3637b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm @@ -15,24 +15,26 @@

IMLN Function

-

The IMLN function is one of the engineering functions. It is used to return the natural logarithm of a complex number.

-

The IMLN function syntax is:

-

IMLN(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMLN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMLN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMLN Function

+

The IMLN function is one of the engineering functions. It is used to return the natural logarithm of a complex number.

+

Syntax

+

IMLN(inumber)

+

The IMLN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMLN function.

+ +

Examples

+

The figure below displays the result returned by the IMLN function.

+

IMLN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm index 4d2702a3b0..432422cb81 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm @@ -15,24 +15,26 @@

IMLOG10 Function

-

The IMLOG10 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 10.

-

The IMLOG10 function syntax is:

-

IMLOG10(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMLOG10 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMLOG10 function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMLOG10 Function

+

The IMLOG10 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 10.

+

Syntax

+

IMLOG10(inumber)

+

The IMLOG10 function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMLOG10 function.

+ +

Examples

+

The figure below displays the result returned by the IMLOG10 function.

+

IMLOG10 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm index 6b0139cbf7..15abc0eec1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm @@ -15,24 +15,26 @@

IMLOG2 Function

-

The IMLOG2 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 2.

-

The IMLOG2 function syntax is:

-

IMLOG2(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMLOG2 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMLOG2 function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMLOG2 Function

+

The IMLOG2 function is one of the engineering functions. It is used to return the logarithm of a complex number to a base of 2.

+

Syntax

+

IMLOG2(inumber)

+

The IMLOG2 function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMLOG2 function.

+ +

Examples

+

The figure below displays the result returned by the IMLOG2 function.

+

IMLOG2 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm index 147eb9bc90..046dd321e3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm @@ -15,26 +15,30 @@

IMPOWER Function

-

The IMPOWER function is one of the engineering functions. It is used to return the result of a complex number raised to the desired power.

-

The IMPOWER function syntax is:

-

IMPOWER(complex-number, power)

-

where

-

complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

power is a power you wish to raise the complex number to.

-

To apply the IMPOWER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMPOWER function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMPOWER Function

+

The IMPOWER function is one of the engineering functions. It is used to return the result of a complex number raised to the desired power.

+

Syntax

+

IMPOWER(inumber, number)

+

The IMPOWER function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
numberA power you wish to raise the complex number to.
+

Notes

+

How to apply the IMPOWER function.

+ +

Examples

+

The figure below displays the result returned by the IMPOWER function.

+

IMPOWER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm index 1f3d65e19c..9457843585 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm @@ -15,24 +15,27 @@

IMPRODUCT Function

-

The IMPRODUCT function is one of the engineering functions. It is used to return the product of the specified complex numbers.

-

The IMPRODUCT function syntax is:

-

IMPRODUCT(argument-list)

-

where argument-list is up to 30 complex numbers expressed in x + yi or x + yj form entered manually or included into the cells you make reference to.

-

To apply the IMPRODUCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMPRODUCT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMPRODUCT Function

+

The IMPRODUCT function is one of the engineering functions. It is used to return the product of the specified complex numbers.

+

Syntax

+

IMPRODUCT(inumber1, [inumber2], ...)

+

The IMPRODUCT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
inumber1/2/nUp to 255 complex numbers expressed in x + yi or x + yj form.
+ +

Notes

+

How to apply the IMPRODUCT function.

+ +

Examples

+

The figure below displays the result returned by the IMPRODUCT function.

+

IMPRODUCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm index 730c11b4fd..52157d33c5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm @@ -15,24 +15,26 @@

IMREAL Function

-

The IMREAL function is one of the engineering functions. It is used to return the real part of the specified complex number.

-

The IMREAL function syntax is:

-

IMREAL(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMREAL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMREAL function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMREAL Function

+

The IMREAL function is one of the engineering functions. It is used to return the real part of the specified complex number.

+

Syntax

+

IMREAL(inumber)

+

The IMREAL function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMREAL function.

+ +

Examples

+

The figure below displays the result returned by the IMREAL function.

+

IMREAL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm index 01a3067a3d..2a17d4f7a1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm @@ -15,24 +15,27 @@

IMSEC Function

-

The IMSEC function is one of the engineering functions. It is used to return the secant of a complex number.

-

The IMSEC function syntax is:

-

IMSEC(complex-number)

-

where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMSEC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSEC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSEC Function

+

The IMSEC function is one of the engineering functions. It is used to return the secant of a complex number.

+

Syntax

+

IMSEC(inumber)

+

The IMSEC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+ +

Notes

+

How to apply the IMSEC function.

+ +

Examples

+

The figure below displays the result returned by the IMSEC function.

+

IMSEC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm index 387da2c78f..946a51d2c3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm @@ -15,24 +15,26 @@

IMSECH Function

-

The IMSECH function is one of the engineering functions. It is used to return the hyperbolic secant of a complex number.

-

The IMSECH function syntax is:

-

IMSECH(complex-number)

-

where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMSECH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSECH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSECH Function

+

The IMSECH function is one of the engineering functions. It is used to return the hyperbolic secant of a complex number.

+

Syntax

+

IMSECH(inumber)

+

The IMSECH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMSECH function.

+ +

Examples

+

The figure below displays the result returned by the IMSECH function.

+

IMSECH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm index b73c0af26c..1922d2b3a2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm @@ -15,24 +15,26 @@

IMSIN Function

-

The IMSIN function is one of the engineering functions. It is used to return the sine of a complex number.

-

The IMSIN function syntax is:

-

IMSIN(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMSIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSIN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSIN Function

+

The IMSIN function is one of the engineering functions. It is used to return the sine of a complex number.

+

Syntax

+

IMSIN(inumber)

+

The IMSIN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMSIN function.

+ +

Examples

+

The figure below displays the result returned by the IMSIN function.

+

IMSIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm index d6c3758341..5165024d9d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm @@ -15,24 +15,26 @@

IMSINH Function

-

The IMSINH function is one of the engineering functions. It is used to return the hyperbolic sine of a complex number.

-

The IMSINH function syntax is:

-

IMSINH(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMSINH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSINH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSINH Function

+

The IMSINH function is one of the engineering functions. It is used to return the hyperbolic sine of a complex number.

+

Syntax

+

IMSINH(inumber)

+

The IMSINH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMSINH function.

+ +

Examples

+

The figure below displays the result returned by the IMSINH function.

+

IMSINH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm index eea92278a9..78382eaf16 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm @@ -15,24 +15,27 @@

IMSQRT Function

-

The IMSQRT function is one of the engineering functions. It is used to return the square root of a complex number.

-

The IMSQRT function syntax is:

-

IMSQRT(complex-number)

-

where complex-number is a complex-number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMSQRT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSQRT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSQRT Function

+

The IMSQRT function is one of the engineering functions. It is used to return the square root of a complex number.

+

Syntax

+

IMSQRT(inumber)

+

The IMSQRT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+ +

Notes

+

How to apply the IMSQRT function.

+ +

Examples

+

The figure below displays the result returned by the IMSQRT function.

+

IMSQRT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm index 475d2a034c..5a8d7e701c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm @@ -15,27 +15,31 @@

IMSUB Function

-

The IMSUB function is one of the engineering functions. It is used to return the difference of two complex numbers expressed in x + yi or x + yj form.

-

The IMSUB function syntax is:

-

IMSUB(complex-number-1, complex-number-2)

-

where

-

complex-number-1 is a complex number from which complex-number-2 is to be subtracted.

-

complex-number-2 is a complex number to subtract from complex-number-1.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the IMSUB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSUB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSUB Function

+

The IMSUB function is one of the engineering functions. It is used to return the difference of two complex numbers expressed in x + yi or x + yj form.

+

Syntax

+

IMSUB(inumber1, inumber2)

+

The IMSUB function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
inumber1A complex number from which inumber2 is to be subtracted.
inumber2A complex number to subtract from inumber1.
+ +

Notes

+

How to apply the IMSUB function.

+ +

Examples

+

The figure below displays the result returned by the IMSUB function.

+

IMSUB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm index a34e75f622..4195e6e128 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm @@ -15,24 +15,27 @@

IMSUM Function

-

The IMSUM function is one of the engineering functions. It is used to return the sum of the specified complex numbers.

-

The IMSUM function syntax is:

-

IMSUM(argument-list)

-

where argument-list is up to 30 complex numbers expressed in x + yi or x + yj form entered manually or included into the cells you make reference to.

-

To apply the IMSUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMSUM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMSUM Function

+

The IMSUM function is one of the engineering functions. It is used to return the sum of the specified complex numbers.

+

Syntax

+

IMSUM(inumber1, [inumber2], ...)

+

The IMSUM function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
inumber1/2/nUp to 255 complex numbers expressed in x + yi or x + yj form.
+ +

Notes

+

How to apply the IMSUM function.

+ +

Examples

+

The figure below displays the result returned by the IMSUM function.

+

IMSUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm index d03e7ab2fe..02ba1a7428 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm @@ -15,24 +15,26 @@

IMTAN Function

-

The IMTAN function is one of the engineering functions. It is used to return the tangent of a complex number.

-

The IMTAN function syntax is:

-

IMTAN(complex-number)

-

where complex-number is a complex number expressed in x + yi or x + yj form entered manually or included into the cell you make reference to.

-

To apply the IMTAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the IMTAN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IMTAN Function

+

The IMTAN function is one of the engineering functions. It is used to return the tangent of a complex number.

+

Syntax

+

IMTAN(inumber)

+

The IMTAN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
inumberA complex number expressed in x + yi or x + yj form.
+

Notes

+

How to apply the IMTAN function.

+ +

Examples

+

The figure below displays the result returned by the IMTAN function.

+

IMTAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm index 8b6b15edb7..132b2f30ba 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm @@ -15,32 +15,62 @@

INDEX Function

-

The INDEX function is one of the lookup and reference functions. It is used to return a value within a range of cells on the base of a specified row and column number. The INDEX function has two forms.

+

The INDEX function is one of the lookup and reference functions. It is used to return a value within a range of cells on the base of a specified row and column number. The INDEX function has two forms.

The INDEX function syntax in the array form is:

-

INDEX(array, [row-number][, [column-number]])

+

INDEX(array, row_num, [column_num])

+

The INDEX function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayA range of cells.
row_numA row number you wish to return a value from. If it is omitted, column_num is required.
column_numA column number you wish to return a value from. If it is omitted, row_num is required.
+

The INDEX function syntax in the reference form is:

-

INDEX(reference, [row-number][, [column-number][, [area-number]]])

-

where

-

array is a range of cells.

-

reference is a reference to a range of cells.

-

row-number is a row number you wish to return a value from. If it is omitted, column-number is required.

-

column-number is a column number you wish to return a value from. If it is omitted, row-number is required.

-

area-number is an area to use in case the array contains several ranges. It is an optional argument. If it is omitted, the function will assume area-number to be 1.

-

These arguments can be entered manually or included into the cells you make reference to.

-

To apply the INDEX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the INDEX function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

INDEX Function

+

INDEX(reference, row_num, [column_num], [area_num])

+

The INDEX function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
referenceA reference to a range of cells.
row_numA row number you wish to return a value from. If it is omitted, column_num is required.
column_numA column number you wish to return a value from. If it is omitted, row_num is required.
area_numAn area to use in case the array contains several ranges. It is an optional argument. If it is omitted, the function will assume area_num to be 1.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the INDEX function.

+ +

Examples

+

The figure below displays the result returned by the INDEX function.

+

INDEX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm index 718e1e7109..4c4ecff35f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm @@ -15,27 +15,32 @@

INDIRECT Function

-

The INDIRECT function is one of the lookup and reference functions. It is used to return the reference to a cell based on its string representation.

-

The INDIRECT function syntax is:

-

INDIRECT(ref-text [, A1-ref-style-flag])

-

where

-

ref-text a reference to a cell specified as a text string.

-

A1-ref-style-flag is a representation style. It is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will analyse ref-text as an A1-style reference. If FALSE, the function will interpret ref-text as an R1C1-style reference.

- -

To apply the INDIRECT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the INDIRECT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

INDIRECT Function

+

The INDIRECT function is one of the lookup and reference functions. It is used to return the reference to a cell based on its string representation.

+

Syntax

+

INDIRECT(ref_text, [a1])

+

The INDIRECT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
ref_textA reference to a cell specified as a text strin.
a1A representation style. It is an optional logical value: TRUE or FALSE. If it is set to TRUE or omitted, the function will analyse ref_text as an A1-style reference. If FALSE, the function will interpret ref_text as an R1C1-style reference.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the INDIRECT function.

+ +

Examples

+

The figure below displays the result returned by the INDIRECT function.

+

INDIRECT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm index f5bddddb60..2a4a93a1b8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm @@ -15,25 +15,28 @@

INT Function

-

The INT function is one of the math and trigonometry functions. It is used to analyze and return the integer part of the specified number.

-

The INT function syntax is:

-

INT(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

Note: if the x value is negative, the function returns the first negative number that is less than or equal to the selected one.

-

To apply the INT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the INT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

+

The INT function is one of the math and trigonometry functions. It is used to analyze and return the integer part of the specified number.

+

Syntax

+

INT(number)

+

The INT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the integer part.
+ +

Notes

+

If the number value is negative, the function returns the first negative number that is less than or equal to the selected one.

+

How to apply the INT function.

+ +

Examples

+

The figure below displays the result returned by the INT function.

+

INT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm index c50bcdc3bf..3179325e4a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm @@ -15,24 +15,31 @@

INTERCEPT Function

-

The INTERCEPT function is one of the statistical functions. It is used to analyze the first array values and second array values to calculate the intersection point.

-

The INTERCEPT function syntax is:

-

INTERCEPT(array-1, array-2)

-

where array-1(2) is the selected range of cells with the same number of elements (columns and rows).

-

To apply the INTERCEPT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the INTERCEPT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

INTERCEPT Function

+

The INTERCEPT function is one of the statistical functions. It is used to analyze the first array values and second array values to calculate the intersection point.

+

Syntax

+

INTERCEPT(known_y's, known_x's)

+

The INTERCEPT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
known_y'sThe dependent data range.
known_x'sThe independent data range with the same number of elements as known_y's contains.
+

Notes

+

If known_y's or known_x's contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the INTERCEPT function.

+ +

Examples

+

The figure below displays the result returned by the INTERCEPT function.

+

INTERCEPT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm index 139d4aefd2..b51d2d5982 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm @@ -15,58 +15,72 @@

INTRATE Function

-

The INTRATE function is one of the financial functions. It is used to calculate the interest rate for a fully invested security that pays interest only at maturity.

-

The INTRATE function syntax is:

-

INTRATE(settlement, maturity, pr, redemption[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

pr is the amount paid for the security.

-

redemption is the amount received for the security at maturity.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The INTRATE function is one of the financial functions. It is used to calculate the interest rate for a fully invested security that pays interest only at maturity.

+

Syntax

+

INTRATE(settlement, maturity, investment, redemption, [basis])

+

The INTRATE function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
investmentThe amount paid for the security.
redemptionThe amount received for the security at maturity.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the INTRATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the INTRATE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

INTRATE Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the INTRATE function.

+ +

Examples

+

The figure below displays the result returned by the INTRATE function.

+

INTRATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm index 96e5657c21..8d1422f6e1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm @@ -15,32 +15,48 @@

IPMT Function

-

The IPMT function is one of the financial functions. It is used to calculate the interest payment for an investment based on a specified interest rate and a constant payment schedule.

-

The IPMT function syntax is:

-

IPMT(rate, per, nper, pv [, [fv] [,[type]]])

-

where

-

rate is the interest rate for the investment.

-

per is the period you want to find the interest payment for. The value must be from 1 to nper.

-

nper is a number of payments.

-

pv is a present value of the payments.

-

fv is a future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0.

-

type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the IPMT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the IPMT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IPMT Function

+

The IPMT function is one of the financial functions. It is used to calculate the interest payment for an investment based on a specified interest rate and a constant payment schedule.

+

Syntax

+

IPMT(rate, per, nper, pv, [fv], [type])

+

The IPMT function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate for the investment.
perThe period you want to find the interest payment for. The value must be from 1 to nper.
nperA number of payments.
pvA present value of the payments.
fvA future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the IPMT function.

+ +

Examples

+

The figure below displays the result returned by the IPMT function.

+

IPMT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm index b35d9ae1c1..b800f3e211 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm @@ -15,27 +15,31 @@

IRR Function

-

The IRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of periodic cash flows.

-

The IRR function syntax is:

-

IRR(values [,[guess]])

-

where

-

values is an array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive.

-

guess is an estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the IRR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the IRR function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

IRR Function

+

The IRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of periodic cash flows.

+

Syntax

+

IRR(values, [guess])

+

The IRR function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
valuesAn array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive.
guessAn estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%.
+ +

Notes

+

How to apply the IRR function.

+ +

Examples

+

The figure below displays the result returned by the IRR function.

+

IRR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm index 4be1cbf7eb..a09c0cc784 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm @@ -15,24 +15,27 @@

ISBLANK Function

-

The ISBLANK function is one of the information functions. It is used to check if the cell is empty or not. If the cell does not contain any value, the function returns TRUE, otherwise the function returns FALSE.

-

The ISBLANK function syntax is:

-

ISBLANK(value)

-

where value is a value entered manually or included into the cell you make reference to.

-

To apply the ISBLANK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISBLANK function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISBLANK Function

+

The ISBLANK function is one of the information functions. It is used to check if the cell is empty or not. If the cell does not contain any value, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISBLANK(value)

+

The ISBLANK function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+ +

Notes

+

How to apply the ISBLANK function.

+ +

Examples

+

The figure below displays the result returned by the ISBLANK function.

+

ISBLANK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm index 6b33f4f309..f042ca1fc7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm @@ -15,24 +15,26 @@

ISERR Function

-

The ISERR function is one of the information functions. It is used to check for an error value. If the cell contains an error value (except #N/A), the function returns TRUE, otherwise the function returns FALSE.

-

The ISERR function syntax is:

-

ISERR(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISERR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISERR function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISERR Function

+

The ISERR function is one of the information functions. It is used to check for an error value. If the cell contains an error value (except #N/A), the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISERR(value)

+

The ISERR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISERR function.

+ +

Examples

+

The figure below displays the result returned by the ISERR function.

+

ISERR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm index 38423de89e..149206a79b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm @@ -15,24 +15,26 @@

ISERROR Function

-

The ISERROR function is one of the information functions. It is used to check for an error value. If the cell contains one of the error values: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? or #NULL!, the function returns TRUE, otherwise the function returns FALSE.

-

The ISERROR function syntax is:

-

ISERROR(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISERROR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISERROR function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISERROR Function

+

The ISERROR function is one of the information functions. It is used to check for an error value. If the cell contains one of the error values: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME? or #NULL!, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISERROR(value)

+

The ISERROR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISERROR function.

+ +

Examples

+

The figure below displays the result returned by the ISERROR function.

+

ISERROR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm index da685da0aa..e1ed4f5ee8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm @@ -15,25 +15,28 @@

ISEVEN Function

-

The ISEVEN function is one of the information functions. It is used to check for an even value. If the cell contains an even value, the function returns TRUE. If the value is odd, it returns FALSE.

-

The ISEVEN function syntax is:

-

ISEVEN(number)

-

where number is a value to test entered manually or included into the cell you make reference to.

-

Note: if number is a nonnumeric value, ISEVEN returns the #VALUE! error value.

-

To apply the ISEVEN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISEVEN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISEVEN Function

+

The ISEVEN function is one of the information functions. It is used to check for an even value. If the cell contains an even value, the function returns TRUE. If the value is odd, it returns FALSE.

+

Syntax

+

ISEVEN(number)

+

The ISEVEN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe numeric value that you want to test.
+

Notes

+

If number is a nonnumeric value, ISEVEN returns the #VALUE! error value.

+

If number is not an integer, it is truncated.

+

How to apply the ISEVEN function.

+ +

Examples

+

The figure below displays the result returned by the ISEVEN function.

+

ISEVEN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm index 6bc7179fe9..738ca9a64e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm @@ -15,24 +15,27 @@

ISFORMULA Function

-

The ISFORMULA function is one of the information functions. It is used to check whether there is a reference to a cell that contains a formula. If the cell contains a formula, the function returns TRUE, otherwise the function returns FALSE.

-

The ISFORMULA function syntax is:

-

ISFORMULA(value)

-

where value is a reference to a cell.

-

To apply the ISFORMULA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISFORMULA function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISFORMULA Function

+

The ISFORMULA function is one of the information functions. It is used to check whether there is a reference to a cell that contains a formula. If the cell contains a formula, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISFORMULA(reference)

+

The ISFORMULA function has the following argument:

+ + + + + + + + + +
ArgumentDescription
referenceA reference to a cell that you want to test.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the ISFORMULA function.

+ +

Examples

+

The figure below displays the result returned by the ISFORMULA function.

+

ISFORMULA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm index 0947c8ea33..2e91f02872 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm @@ -15,24 +15,26 @@

ISLOGICAL Function

-

The ISLOGICAL function is one of the information functions. It is used to check for a logical value (TRUE or FALSE). If the cell contains a logical value, the function returns TRUE, otherwise the function returns FALSE.

-

The ISLOGICAL function syntax is:

-

ISLOGICAL(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISLOGICAL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISLOGICAL function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISLOGICAL Function

+

The ISLOGICAL function is one of the information functions. It is used to check for a logical value (TRUE or FALSE). If the cell contains a logical value, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISLOGICAL(value)

+

The ISLOGICAL function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISLOGICAL function.

+ +

Examples

+

The figure below displays the result returned by the ISLOGICAL function.

+

ISLOGICAL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm index e33c8821c5..58362550e8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm @@ -15,24 +15,26 @@

ISNA Function

-

The ISNA function is one of the information functions. It is used to check for a #N/A error. If the cell contains a #N/A error value, the function returns TRUE, otherwise the function returns FALSE.

-

The ISNA function syntax is:

-

ISNA(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISNA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISNA function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISNA Function

+

The ISNA function is one of the information functions. It is used to check for a #N/A error. If the cell contains a #N/A error value, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISNA(value)

+

The ISNA function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISNA function.

+ +

Examples

+

The figure below displays the result returned by the ISNA function.

+

ISNA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm index 8ed1bb19f6..ee6b9683ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm @@ -15,24 +15,26 @@

ISNONTEXT Function

-

The ISNONTEXT function is one of the information functions. It is used to check for a value that is not a text. If the cell does not contain a text value, the function returns TRUE, otherwise the function returns FALSE.

-

The ISNONTEXT function syntax is:

-

ISNONTEXT(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISNONTEXT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISNONTEXT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISNONTEXT Function

+

The ISNONTEXT function is one of the information functions. It is used to check for a value that is not a text. If the cell does not contain a text value, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISNONTEXT(value)

+

The ISNONTEXT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISNONTEXT function.

+ +

Examples

+

The figure below displays the result returned by the ISNONTEXT function.

+

ISNONTEXT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm index 2b705e63c7..add7a26b3c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm @@ -15,24 +15,26 @@

ISNUMBER Function

-

The ISNUMBER function is one of the information functions. It is used to check for a numeric value. If the cell contains a numeric value, the function returns TRUE, otherwise the function returns FALSE.

-

The ISNUMBER function syntax is:

-

ISNUMBER(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISNUMBER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISNUMBER function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISNUMBER Function

+

The ISNUMBER function is one of the information functions. It is used to check for a numeric value. If the cell contains a numeric value, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISNUMBER(value)

+

The ISNUMBER function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISNUMBER function.

+ +

Examples

+

The figure below displays the result returned by the ISNUMBER function.

+

ISNUMBER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iso-ceiling.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iso-ceiling.htm index 3843151281..87fc8fcdf4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iso-ceiling.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iso-ceiling.htm @@ -15,27 +15,31 @@

ISO.CEILING Function

-

The ISO.CEILING function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing.

-

The ISO.CEILING function syntax is:

-

ISO.CEILING(number [, significance])

-

where

-

number is the number you wish to round up.

-

significance is the multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the ISO.CEILING function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ISO.CEILING function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISO.CEILING Function

+

The ISO.CEILING function is one of the math and trigonometry functions. It is used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance. The number is always rounded up regardless of its sing.

+

Syntax

+

ISO.CEILING(number, [significance])

+

The ISO.CEILING function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round up.
significanceThe multiple of significance you wish to round up to. It is an optional parameter. If it is omitted, the default value of 1 is used. If it is set to zero, the function returns 0.
+ +

Notes

+

How to apply the ISO.CEILING function.

+ +

Examples

+

The figure below displays the result returned by the ISO.CEILING function.

+

ISO.CEILING Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm index 7094623544..1171e2a510 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm @@ -15,25 +15,28 @@

ISODD Function

-

The ISODD function is one of the information functions. It is used to check for an odd value. If the cell contains an odd value, the function returns TRUE. If the value is even, it returns FALSE.

-

The ISODD function syntax is:

-

ISODD(number)

-

where number is a value to test entered manually or included into the cell you make reference to.

-

Note: if number is a nonnumeric value, ISODD returns the #VALUE! error value.

-

To apply the ISODD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISODD function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISODD Function

+

The ISODD function is one of the information functions. It is used to check for an odd value. If the cell contains an odd value, the function returns TRUE. If the value is even, it returns FALSE.

+

Syntax

+

ISODD(number)

+

The ISODD function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe numeric value that you want to test.
+

Notes

+

If number is a nonnumeric value, ISODD returns the #VALUE! error value.

+

If number is not an integer, it is truncated.

+

How to apply the ISODD function.

+ +

Examples

+

The figure below displays the result returned by the ISODD function.

+

ISODD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm index 866ce296eb..97846b2f2a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm @@ -15,25 +15,26 @@

ISOWEEKNUM Function

-

The ISOWEEKNUM function is one of the date and time functions. It used to return number of the ISO week number of the year for a given date. Returns a number between 1 and 54.

-

The ISOWEEKNUM function syntax is:

-

ISOWEEKNUM(date)

-

where

-

date is a date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the Date function or other date and time function.

-

To apply the ISOWEEKNUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the ISOWEEKNUM function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISOWEEKNUM Function

+

The ISOWEEKNUM function is one of the date and time functions. It used to return number of the ISO week number of the year for a given date. Returns a number between 1 and 54.

+

Syntax

+

ISOWEEKNUM(date)

+

The ISOWEEKNUM function has the following argument:

+ + + + + + + + + +
ArgumentDescription
dateA date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the DATE function or other date and time function.
+

Notes

+

How to apply the ISOWEEKNUM function.

+ +

Examples

+

The figure below displays the result returned by the ISOWEEKNUM function.

+

ISOWEEKNUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm index d592cc4b30..b70638d7ac 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm @@ -15,30 +15,40 @@

ISPMT Function

-

The ISPMT function is one of the financial functions. It is used to calculate the interest payment for a specified period of an investment based on a constant payment schedule.

-

The ISPMT function syntax is:

-

ISPMT(rate, per, nper, pv)

-

where

-

rate is the interest rate for the investment.

-

per is the period you want to find the interest payment for. The value must be from 1 to nper.

-

nper is a number of payments.

-

pv is a present value of the payments.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the ISPMT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ISPMT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISPMT Function

+

The ISPMT function is one of the financial functions. It is used to calculate the interest payment for a specified period of an investment based on a constant payment schedule.

+

Syntax

+

ISPMT(rate, per, nper, pv)

+

The ISPMT function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate for the investment.
perThe period you want to find the interest payment for. The value must be from 1 to nper.
nperA number of payments.
pvA present value of the payments.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the ISPMT function.

+ +

Examples

+

The figure below displays the result returned by the ISPMT function.

+

ISPMT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm index 2dcd5154c8..69c32e8158 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm @@ -15,26 +15,28 @@

ISREF Function

-

The ISREF function is one of the information functions. It is used to verify if the value is a valid cell reference.

-

The ISREF function syntax is:

-

ISREF(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISREF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISREF function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell. If the value is a valid reference, the function returns TRUE.

-

ISREF Function

+

The ISREF function is one of the information functions. It is used to verify if the value is a valid cell reference.

+

Syntax

+

ISREF(value)

+

The ISREF function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISREF function.

+ +

Examples

+

If the value is a valid reference, the function returns TRUE.

+

ISREF Function

Otherwise the function returns FALSE.

-

ISREF Function

+

ISREF Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm index d9247d5336..9732df8143 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm @@ -15,24 +15,26 @@

ISTEXT Function

-

The ISTEXT function is one of the information functions. It is used to check for a text value. If the cell contains a text value, the function returns TRUE, otherwise the function returns FALSE.

-

The ISTEXT function syntax is:

-

ISTEXT(value)

-

where value is a value to test entered manually or included into the cell you make reference to.

-

To apply the ISTEXT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the ISTEXT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ISTEXT Function

+

The ISTEXT function is one of the information functions. It is used to check for a text value. If the cell contains a text value, the function returns TRUE, otherwise the function returns FALSE.

+

Syntax

+

ISTEXT(value)

+

The ISTEXT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value that you want to test. The value can be an empty cell, error, logical value, text, number, reference value, or a name referring to any of these.
+

Notes

+

How to apply the ISTEXT function.

+ +

Examples

+

The figure below displays the result returned by the ISTEXT function.

+

ISTEXT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm index 4791a852dc..e170475120 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm @@ -15,24 +15,26 @@

KURT Function

-

The KURT function is one of the statistical functions. It is used to return the kurtosis of the argument list.

-

The KURT function syntax is:

-

KURT(argument-list)

-

where argument-list is up to 30 numeric values entered manually or included into the cell you make reference to.

-

To apply the KURT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the KURT function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

KURT Function

+

The KURT function is one of the statistical functions. It is used to return the kurtosis of the argument list.

+

Syntax

+

KURT(number1, [number2], ...)

+

The KURT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate kurtosis.
+

Notes

+

How to apply the KURT function.

+ +

Examples

+

The figure below displays the result returned by the KURT function.

+

KURT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm index 7c72a13d98..9377d6bdfb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm @@ -15,26 +15,31 @@

LARGE Function

-

The LARGE function is one of the statistical functions. It is used to analyze the range of cells and return the k-th largest value.

-

The LARGE function syntax is:

-

LARGE(array, k)

-

where

-

array is the selected range of cells you want to analyze.

-

k is the position of the number from the largest one, a numeric value greater than 0 entered manually or included into the cell you make reference to.

-

To apply the LARGE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LARGE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LARGE Function

+

The LARGE function is one of the statistical functions. It is used to analyze the range of cells and return the k-th largest value.

+

Syntax

+

LARGE(array, k)

+

The LARGE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells you want to analyze.
kThe position of the number from the largest one, a numeric value greater than 0.
+ +

Notes

+

How to apply the LARGE function.

+ +

Examples

+

The figure below displays the result returned by the LARGE function.

+

LARGE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm index 2f29dae251..526e820b12 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm @@ -15,24 +15,26 @@

LCM Function

-

The LCM function is one of the math and trigonometry functions. It is used to return the lowest common multiple of one or more numbers.

-

The LCM function syntax is:

-

LCM(argument-list)

-

where argument-list is up to 30 numeric values entered manually or included into the cell you make reference to.

-

To apply the LCM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the LCM function,
  8. -
  9. enter the required arguments separating by commas or select the range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LCM Function

+

The LCM function is one of the math and trigonometry functions. It is used to return the lowest common multiple of one or more numbers.

+

Syntax

+

LCM(number1, [number2], ...)

+

The LCM function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the lowest common multiple.
+

Notes

+

How to apply the LCM function.

+ +

Examples

+

The figure below displays the result returned by the LCM function.

+

LCM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm index 6270fe46b8..6fd756d546 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm @@ -15,28 +15,48 @@

LEFT/LEFTB Function

-

The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The LEFT/LEFTB function syntax is:

-

LEFT(string [, number-chars])

-

LEFTB(string [, number-chars])

-

where

-

string is a string you need to extract the substring from,

-

number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the function will assume it to be 1.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the LEFT/LEFTB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the LEFT/LEFTB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LEFT Function

+

The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

LEFT(text, [num_chars])

+

The LEFT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_charsA number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1.
+ +

LEFTB(text, [num_bytes])

+

The LEFTB function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_bytesA number of the substring characters, based on bytes. It is an optional argument.
+ +

Notes

+

How to apply the LEFT/LEFTB function.

+ +

Examples

+

The figure below displays the result returned by the LEFT function.

+

LEFT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/leftb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/leftb.htm index 00760ee604..b9962cca7a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/leftb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/leftb.htm @@ -15,28 +15,47 @@

LEFT/LEFTB Function

-

The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The LEFT/LEFTB function syntax is:

-

LEFT(string [, number-chars])

-

LEFTB(string [, number-chars])

-

where

-

string is a string you need to extract the substring from,

-

number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the function will assume it to be 1.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the LEFT/LEFTB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the LEFT/LEFTB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LEFTB Function

+

The LEFT/LEFTB function is one of the text and data functions. Is used to extract the substring from the specified string starting from the left character. The LEFT function is intended for languages that use the single-byte character set (SBCS), while LEFTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

LEFT(text, [num_chars])

+

The LEFT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_charsA number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1.
+ +

LEFTB(text, [num_bytes])

+

The LEFTB function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_bytesA number of the substring characters, based on bytes. It is an optional argument.
+

Notes

+

How to apply the LEFT/LEFTB function.

+ +

Examples

+

The figure below displays the result returned by the LEFT function.

+

LEFTB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm index 407c7bb373..71c6875c07 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm @@ -15,26 +15,27 @@

LEN/LENB Function

-

The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The LEN/LENB function syntax is:

-

LEN(string)

-

LENB(string)

-

where string is a data entered manually or included into the cell you make reference to.

-

To apply the LEN/LENB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the LEN/LENB function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LEN/LENB Function

+

The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

LEN(text)

+

LENB(text)

+

The LEN/LENB function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text whose length you want to find.
+

Notes

+

How to apply the LEN/LENB function.

+ +

Examples

+

The figure below displays the result returned by the LEN function.

+

LEN/LENB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lenb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lenb.htm index 3c778e1ce4..8ef6443af4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lenb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lenb.htm @@ -15,26 +15,27 @@

LEN/LENB Function

-

The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The LEN/LENB function syntax is:

-

LEN(string)

-

LENB(string)

-

where string is a data entered manually or included into the cell you make reference to.

-

To apply the LEN/LENB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the LEN/LENB function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LEN/LENB Function

+

The LEN/LENB function is one of the text and data functions. Is used to analyse the specified string and return the number of characters it contains. The LEN function is intended for languages that use the single-byte character set (SBCS), while LENB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

LEN(text)

+

LENB(text)

+

The LEN/LENB function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text whose length you want to find.
+

Notes

+

How to apply the LEN/LENB function.

+ +

Examples

+

The figure below displays the result returned by the LEN function.

+

LEN/LENB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm index 237231cc27..a8f484aaa5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/linest.htm @@ -15,30 +15,40 @@

LINEST Function

-

The LINEST function is one of the statistical functions. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula.

-

The LINEST function syntax is:

-

LINEST( known_y's, [known_x's], [const], [stats] )

-

where:

-

known_y's is a known range of y values in the equation y = mx + b. This is the required argument.

-

known_x's is a known range of x values in the equation y = mx + b. This is an optional argument. If it is omitted, known_x's is assumed to be the array {1,2,3,...} with the same number of values as known_y's.

-

const is a logical value that specifies if you want to set b equal to 0. This is an optional argument. If it is set to TRUE or omitted, b is calculated normally. If it is set to FALSE, b is set equal to 0.

-

stats is a logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to TRUE, the function returns the additional regression statistics. If it is set to FALSE or omitted, the function does not return the additional regression statistics.

-

To apply the LINEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LINEST function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, - -
  10. -
  11. press the Enter button.
  12. -
-

The first value of the resulting array will be displayed in the selected cell.

-

LINEST Function

+

The LINEST function is one of the statistical functions. It is used to calculate the statistics for a line by using the least squares method to calculate a straight line that best fits your data, and then returns an array that describes the line; because this function returns an array of values, it must be entered as an array formula.

+

Syntax

+

LINEST(known_y's, [known_x's], [const], [stats])

+

The LINEST function has the following argument:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
known_y'sA known range of y values in the equation y = mx + b. This is the required argument.
known_x'sA known range of x values in the equation y = mx + b. This is an optional argument. If it is omitted, known_x's is assumed to be the array {1,2,3,...} with the same number of values as known_y's.
constA logical value that specifies if you want to set b equal to 0. This is an optional argument. If it is set to TRUE or omitted, b is calculated normally. If it is set to FALSE, b is set equal to 0.
statsA logical value that specifies if you want to return additional regression statistics. This is an optional argument. If it is set to TRUE, the function returns the additional regression statistics. If it is set to FALSE or omitted, the function does not return the additional regression statistics.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the LINEST function.

+ +

Examples

+

The first value of the resulting array will be displayed in the selected cell.

+

LINEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm index 4ced3a68e2..6a6559a421 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm @@ -15,24 +15,26 @@

LN Function

-

The LN function is one of the math and trigonometry functions. It is used to return the natural logarithm of a number.

-

The LN function syntax is:

-

LN(x)

-

where x is a numeric value entered manually or included into the cell you make reference to. It must be greater than 0.

-

To apply the LN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the LN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LN Function

+

The LN function is one of the math and trigonometry functions. It is used to return the natural logarithm of a number.

+

Syntax

+

LN(number)

+

The LN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the natural logarithm. It must be greater than 0.
+

Notes

+

How to apply the LN function.

+ +

Examples

+

The figure below displays the result returned by the LN function.

+

LN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm index 77e87c6c0a..e625291bab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm @@ -15,27 +15,31 @@

LOG Function

-

The LOG function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a specified base.

-

The LOG function syntax is:

-

LOG(x [,base])

-

where

-

x is a numeric value greater than 0

-

base is the base used to calculate the logarithm of a number. It is an optional parameter. If it is omitted, the function will assume base to be 10.

-

The numeric value can be entered manually or included into the cells you make reference to.

-

To apply the LOG function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the LOG function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOG Function

+

The LOG function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a specified base.

+

Syntax

+

LOG(number, [base])

+

The LOG function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the logarithm. It must be greater than 0.
baseThe base used to calculate the logarithm of a number. It is an optional parameter. If it is omitted, the function will assume base to be 10.
+ +

Notes

+

How to apply the LOG function.

+ +

Examples

+

The figure below displays the result returned by the LOG function.

+

LOG Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm index 148d0a4ee2..80f491515a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm @@ -15,24 +15,26 @@

LOG10 Function

-

The LOG10 function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a base of 10.

-

The LOG10 function syntax is:

-

LOG10(x)

-

where x is a numeric value greater than 0 entered manually or included into the cell you make reference to.

-

To apply the LOG10 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the LOG10 function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOG10 Function

+

The LOG10 function is one of the math and trigonometry functions. It is used to return the logarithm of a number to a base of 10.

+

Syntax

+

LOG10(number)

+

The LOG10 function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the logarithm to a base of 10. It must be greater than 0.
+

Notes

+

How to apply the LOG10 function.

+ +

Examples

+

The figure below displays the result returned by the LOG10 function.

+

LOG10 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/logest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/logest.htm index 1119c9f93d..1f69b866c6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/logest.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/logest.htm @@ -15,30 +15,40 @@

LOGEST Function

-

The LOGEST function is one of the statistical functions. It is used to calculate an exponential curve that fits the data and returns an array of values that describes the curve.

-

The LOGEST function syntax is:

-

LOGEST(known_y’s, [known_x’s], [const], [stats])

-

where

-

known_y’s is the set of y-values you already know in the y = b*m^x equation.

-

known_x’s is the optional set of x-values you might know in the y = b*m^x equation.

-

const is an optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation and m-values correspond with the y = m^x equation.

-

stats is an optional argument. It is a TRUE or FALSE value that sets whether additional regression statistics should be returned.

- -

To apply the LOGEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LOGEST function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOGEST Function

+

The LOGEST function is one of the statistical functions. It is used to calculate an exponential curve that fits the data and returns an array of values that describes the curve.

+

Syntax

+

LOGEST(known_y’s, [known_x’s], [const], [stats])

+

The LOGEST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
known_y’sThe set of y-values you already know in the y = b*m^x equation.
known_x’sThe optional set of x-values you might know in the y = b*m^x equation.
constAn optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 1 in the y = b*m^x equation and m-values correspond with the y = m^x equation.
statsAn optional argument. It is a TRUE or FALSE value that sets whether additional regression statistics should be returned.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the LOGEST function.

+ +

Examples

+

The figure below displays the result returned by the LOGEST function.

+

LOGEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm index 5817568ec2..38175b3896 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm @@ -15,28 +15,35 @@

LOGINV Function

-

The LOGINV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of the given x value with the specified parameters.

-

The LOGINV function syntax is:

-

LOGINV(x, mean, standard-deviation)

-

where

-

x is the probability associated with the lognormal distribution, a numeric value greater than 0 but less than 1.

-

mean is the mean of ln(x), a numeric value.

-

standard-deviation is the standard deviation of ln(x), a numeric value greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the LOGINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LOGINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOGINV Function

+

The LOGINV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of the given x value with the specified parameters.

+

Syntax

+

LOGINV(probability, mean, standard_dev)

+

The LOGINV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the lognormal distribution, a numeric value greater than 0 but less than 1.
meanThe mean of ln(x), a numeric value.
standard_devThe standard deviation of ln(x), a numeric value greater than 0.
+ +

Notes

+

How to apply the LOGINV function.

+ +

Examples

+

The figure below displays the result returned by the LOGINV function.

+

LOGINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm index b457a823e2..5724f41636 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm @@ -15,29 +15,39 @@

LOGNORM.DIST Function

-

The LOGNORM.DIST function is one of the statistical functions. It is used to return the lognormal distribution of x, where ln(x) is normally distributed with parameters mean and standard-dev.

-

The LOGNORM.DIST function syntax is:

-

LOGNORM.DIST(x, mean, standard-dev, cumulative)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

mean is the mean of ln(x), a numeric value.

-

standard-dev is the standard deviation of ln(x), a numeric value greater than 0.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the LOGNORM.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LOGNORM.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOGNORM.DIST Function

+

The LOGNORM.DIST function is one of the statistical functions. It is used to return the lognormal distribution of x, where ln(x) is normally distributed with parameters mean and standard_dev.

+

Syntax

+

LOGNORM.DIST(x, mean, standard_dev, cumulative)

+

The LOGNORM.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
meanThe mean of ln(x), a numeric value.
standard_devThe standard deviation of ln(x), a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+ +

Notes

+

How to apply the LOGNORM.DIST function.

+ +

Examples

+

The figure below displays the result returned by the LOGNORM.DIST function.

+

LOGNORM.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm index bcb42016aa..1cb098aa42 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm @@ -15,28 +15,35 @@

LOGNORM.INV Function

-

The LOGNORM.INV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of x, where ln(x) is normally distributed with parameters mean and standard-dev.

-

The LOGNORM.INV function syntax is:

-

LOGNORM.INV(probability, mean, standard-dev)

-

where

-

probability is the probability associated with the lognormal distribution. A numeric value greater than 0 but less than 1.

-

mean is the mean of ln(x), a numeric value.

-

standard-dev is the standard deviation of ln(x), a numeric value greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the LOGNORM.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LOGNORM.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOGNORM.INV Function

+

The LOGNORM.INV function is one of the statistical functions. It is used to return the inverse of the lognormal cumulative distribution function of x, where ln(x) is normally distributed with parameters mean and standard_dev.

+

Syntax

+

LOGNORM.INV(probability, mean, standard_dev)

+

The LOGNORM.INV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the lognormal distribution, a numeric value greater than 0 but less than 1.
meanThe mean of ln(x), a numeric value.
standard_devThe standard deviation of ln(x), a numeric value greater than 0.
+ +

Notes

+

How to apply the LOGNORM.INV function.

+ +

Examples

+

The figure below displays the result returned by the LOGNORM.INV function.

+

LOGNORM.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm index d93f6cc5de..c5c66bd6d8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm @@ -15,28 +15,35 @@

LOGNORMDIST Function

-

The LOGNORMDIST function is one of the statistical functions. It is used to analyze logarithmically transformed data and return the lognormal cumulative distribution function of the given x value with the specified parameters.

-

The LOGNORMDIST function syntax is:

-

LOGNORMDIST(x, mean, standard-deviation)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

mean is the mean of ln(x), a numeric value.

-

standard-deviation is the standard deviation of ln(x), a numeric value greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the LOGNORMDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the LOGNORMDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOGNORMDIST Function

+

The LOGNORMDIST function is one of the statistical functions. It is used to analyze logarithmically transformed data and return the lognormal cumulative distribution function of the given x value with the specified parameters.

+

Syntax

+

LOGNORMDIST(x, mean, standard_dev)

+

The LOGNORMDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
meanThe mean of ln(x), a numeric value.
standard_devThe standard deviation of ln(x), a numeric value greater than 0.
+ +

Notes

+

How to apply the LOGNORMDIST function.

+ +

Examples

+

The figure below displays the result returned by the LOGNORMDIST function.

+

LOGNORMDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm index 933c7b4aba..274961fd7b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm @@ -15,29 +15,36 @@

LOOKUP Function

-

The LOOKUP function is one of the lookup and reference functions. It is used to return a value from a selected range (row or column containing the data in ascending order).

-

The LOOKUP function syntax is:

-

LOOKUP(lookup-value, lookup-vector, result-vector)

-

where

-

lookup-value is a value to search for.

-

lookup-vector is a single row or column containing data sorted in ascending order.

-

lookup-result is a single row or column of data that is the same size as the lookup-vector.

-

The function searches for the lookup-value in the lookup-vector and returns the value from the same position in the lookup-result.

-

If the lookup-value is smaller than all of the values in the lookup-vector, the function will return the #N/A error. If there is not a value that strictly matches the lookup-value, the function chooses the largest value in the lookup-vector that is less than or equal to the value.

-

How to use LOOKUP

-

To apply the LOOKUP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the LOOKUP function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

+

The LOOKUP function is one of the lookup and reference functions. It is used to return a value from a selected range (row or column containing the data in ascending order).

+

Syntax

+

LOOKUP(lookup_value, lookup_vector, [result_vector])

+

The LOOKUP function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
lookup_valueA value to search for.
lookup_vectorA single row or column containing data sorted in ascending order.
result_vectorA single row or column of data that is the same size as the lookup_vector.
+ +

Notes

+

The function searches for the lookup_value in the lookup_vector and returns the value from the same position in the result_vector.

+

If the lookup_value is smaller than all of the values in the lookup_vector, the function will return the #N/A error. If there is not a value that strictly matches the lookup_value, the function chooses the largest value in the lookup_vector that is less than or equal to the value.

+

How to apply the LOOKUP function.

+ +

Examples

+

The figure below displays the result returned by the LOOKUP function.

lookup function gif

diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm index 49bc5009ad..7d473142e5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm @@ -15,25 +15,26 @@

LOWER Function

-

The LOWER function is one of the text and data functions. Is used to convert uppercase letters to lowercase in the selected cell.

-

The LOWER function syntax is:

-

LOWER(text)

-

where text is data included into the cell you make reference to.

-

To apply the LOWER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the LOWER function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

LOWER Function

+

The LOWER function is one of the text and data functions. Is used to convert uppercase letters to lowercase in the selected cell.

+

Syntax

+

LOWER(text)

+

The LOWER function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text you want to convert to lowercase.
+

Notes

+

How to apply the LOWER function.

+ +

Examples

+

The figure below displays the result returned by the LOWER function.

+

LOWER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm index b99ac1e829..167af9d4e6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm @@ -15,45 +15,54 @@

MATCH Function

-

The MATCH function is one of the lookup and reference functions. It is used to return a relative position of a specified item in a range of cells.

-

The MATCH function syntax is:

-

MATCH(lookup-value, lookup-array[ , [match-type]])

-

where

-

lookup-value is a value in the lookup-array to search for. It can be a numeric, logical or text value, or a cell reference.

-

lookup-array is a single row or column you need to analyze.

-

match-type is a type of match. It's an optional argument. It can be one of the following numeric values:

+

The MATCH function is one of the lookup and reference functions. It is used to return a relative position of a specified item in a range of cells.

+

Syntax

+

MATCH(lookup_value, lookup_array, [match_type])

+

The MATCH function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
lookup_valueA value in the lookup_array to search for. It can be a numeric, logical or text value, or a cell reference.
lookup_arrayA single row or column you need to analyze.
match_typeA type of match. It's an optional argument. The possible values are listed in the table below.
+ +

The match_type argument can be one of the following:

- - + + - - + + - - + + - - + +
Numeric valueMeaningNumeric valueMeaning
1 or omittedThe values must be sorted in ascending order. If the the exact match is not found, the function will return the largest value that is less than lookup-value.1 or omittedThe values must be sorted in ascending order. If the exact match is not found, the function will return the largest value that is less than lookup_value.
0The values can be sorted in any order. If the the exact match is not found, the function will return the #N/A error.0The values can be sorted in any order. If the exact match is not found, the function will return the #N/A error.
-1The values must be sorted in descending order. If the the exact match is not found, the function will return the smallest value that is greater than lookup-value.-1The values must be sorted in descending order. If the exact match is not found, the function will return the smallest value that is greater than lookup_value.
-

To apply the MATCH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the MATCH function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MATCH Function

+

Notes

+

How to apply the MATCH function.

+ +

Examples

+

The figure below displays the result returned by the MATCH function.

+

MATCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm index 343ecfe0eb..0c8f1b24c6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm @@ -15,24 +15,26 @@

MAX Function

-

The MAX function is one of the statistical functions. It is used to analyze the range of data and find the largest number.

-

The MAX function syntax is:

-

MAX(number1, number2, ...)

-

where number1(2) is up to 30 numeric values entered manually or included into the cells you make reference to.

-

To apply the MAX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MAX function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MAX Function

+

The MAX function is one of the statistical functions. It is used to analyze the range of data and find the largest number.

+

Syntax

+

MAX(number1, [number2], ...)

+

The MAX function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the largest number.
+

Notes

+

How to apply the MAX function.

+ +

Examples

+

The figure below displays the result returned by the MAX function.

+

MAX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm index 808fce5264..11a4cca375 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm @@ -15,25 +15,26 @@

MAXA Function

-

The MAXA function is one of the statistical functions. It is used to analyze the range of data and find the largest value.

-

The MAXA function syntax is:

-

MAXA(number1, number2, ...)

-

where number1(2) is a data (number, text, logical value) entered manually or included into the cell you make reference to.

-

To apply the MAXA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MAXA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MAXA Function

+

The MAXA function is one of the statistical functions. It is used to analyze the range of data and find the largest value.

+

Syntax

+

MAXA(value1, [value2], ...)

+

The MAXA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values (number, text, logical value) for which you want to find the largest value.
+

Notes

+

How to apply the MAXA function.

+ +

Examples

+

The figure below displays the result returned by the MAXA function.

+

MAXA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm index ed0c40a6d7..8dd14d6183 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm @@ -15,28 +15,40 @@

MAXIFS Function

-

The MAXIFS function is one of the statistical functions. It is used to return the maximum value among cells specified by a given set of conditions or criteria.

-

The MAXIFS function syntax is:

-

MAXIFS(max_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...)

-

max_range is the range of cells in which the maximum will be determined.

-

criteria_range1 is the first selected range of cells to apply the criteria1 to.

-

criteria1 is the first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the max_range will be evaluated as maximum. It can be a value entered manually or included into the cell you make reference to.

-

criteria_range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional.

-

Note: you can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

-

To apply the MAXIFS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MAXIFS function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MAXIFS Function

+

The MAXIFS function is one of the statistical functions. It is used to return the maximum value among cells specified by a given set of conditions or criteria.

+

Syntax

+

MAXIFS(max_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

+

The MAXIFS function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
max_rangeThe range of cells in which the maximum will be determined.
criteria_range1The first selected range of cells to apply the criteria1 to.
criteria1The first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the max_range will be evaluated as maximum.
criteria_range2, criteria2Additional ranges of cells and their corresponding criteria. These arguments are optional.
+ +

Notes

+

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

+

How to apply the MAXIFS function.

+ +

Examples

+

The figure below displays the result returned by the MAXIFS function.

+

MAXIFS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm index f40d7e48e6..ed087a19dd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm @@ -15,26 +15,28 @@

MDETERM Function

-

The MDETERM function is one of the math and trigonometry functions. It is used to return the matrix determinant of an array.

-

The MDETERM function syntax is:

-

MDETERM(array)

-

where array is an array of numbers.

-

Note: If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error.
- If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error.

-

To apply the MDETERM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MDETERM function,
  8. -
  9. select the range of cells with the mouse or enter the required argument manually, like this A1:B2,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MDETERM Function

+

The MDETERM function is one of the math and trigonometry functions. It is used to return the matrix determinant of an array.

+

Syntax

+

MDETERM(array)

+

The MDETERM function has the following argument:

+ + + + + + + + + +
ArgumentDescription
arrayAn array of numbers.
+

Notes

+

If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error.

+

If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error.

+

How to apply the MDETERM function.

+ +

Examples

+

The figure below displays the result returned by the MDETERM function.

+

MDETERM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm index 5727301d71..05c368ccef 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm @@ -15,59 +15,76 @@

MDURATION Function

-

The MDURATION function is one of the financial functions. It is used to calculate the modified Macaulay duration of a security with an assumed par value of $100.

-

The MDURATION function syntax is:

-

MDURATION(settlement, maturity, coupon, yld, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

coupon is the annual coupon rate of the security.

-

yld is the annual yield of the security.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The MDURATION function is one of the financial functions. It is used to calculate the modified Macaulay duration of a security with an assumed par value of $100.

+

Syntax

+

MDURATION(settlement, maturity, coupon, yld, frequency, [basis])

+

The MDURATION function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
couponThe annual coupon rate of the security.
yldThe annual yield of the security.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+ +

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the MDURATION function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the MDURATION function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MDURATION Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the MDURATION function.

+ +

Examples

+

The figure below displays the result returned by the MDURATION function.

+

MDURATION Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm index 83caedd69b..8e80aa2bc6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm @@ -15,24 +15,26 @@

MEDIAN Function

-

The MEDIAN function is one of the statistical functions. It is used to calculate the median of the argument list.

-

The MEDIAN function syntax is:

-

MEDIAN(argument-list)

-

where argument-list is up tp 30 numerical values entered manually or included into the cell you make reference to.

-

To apply the MEDIAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MEDIAN function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MEDIAN Function

+

The MEDIAN function is one of the statistical functions. It is used to calculate the median of the argument list.

+

Syntax

+

MEDIAN(number1, [number2], ...)

+

The MEDIAN function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the median.
+

Notes

+

How to apply the MEDIAN function.

+ +

Examples

+

The figure below displays the result returned by the MEDIAN function.

+

MEDIAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm index 226575b6ca..fe2c0c8c2c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm @@ -15,29 +15,55 @@

MID/MIDB Function

-

The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The MID/MIDB function syntax is:

-

MID(string, start-pos, number-chars)

-

MIDB(string, start-pos, number-chars)

-

where

-

string is a string you need to extract the characters from.

-

start-pos is a position you need to start extracting from.

-

number-chars is a number of the characters you need to extract.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the MID/MIDB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the MID/MIDB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MID Function

+

The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

MID(text, start_num, num_chars)

+

The MID function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the characters from.
start_numA position you need to start extracting from.
num_charsA number of the characters you need to extract.
+ +

MIDB(text, start_num, num_bytes)

+

The MIDB function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the characters from.
start_numA position you need to start extracting from.
num_bytesA number of the characters you need to extract, based on bytes.
+

Notes

+

How to apply the MID/MIDB function.

+ +

Examples

+

The figure below displays the result returned by the MID function.

+

MID Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/midb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/midb.htm index 336af4dc85..3640fd1698 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/midb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/midb.htm @@ -15,29 +15,55 @@

MID/MIDB Function

-

The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The MID/MIDB function syntax is:

-

MID(string, start-pos, number-chars)

-

MIDB(string, start-pos, number-chars)

-

where

-

string is a string you need to extract the characters from.

-

start-pos is a position you need to start extracting from.

-

number-chars is a number of the characters you need to extract.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the MID/MIDB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the MID/MIDB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MIDB Function

+

The MID/MIDB function is one of the text and data functions. Is used to extract the characters from the specified string starting from any position. The MID function is intended for languages that use the single-byte character set (SBCS), while MIDB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

MID(text, start_num, num_chars)

+

The MID function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the characters from.
start_numA position you need to start extracting from.
num_charsA number of the characters you need to extract.
+ +

MIDB(text, start_num, num_bytes)

+

The MIDB function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the characters from.
start_numA position you need to start extracting from.
num_bytesA number of the characters you need to extract, based on bytes.
+

Notes

+

How to apply the MID/MIDB function.

+ +

Examples

+

The figure below displays the result returned by the MID function.

+

MIDB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm index a357b05225..b55272a189 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm @@ -15,25 +15,26 @@

MIN Function

-

The MIN function is one of the statistical functions. It is used to analyze the range of data and find the smallest number.

-

The MIN function syntax is:

-

MIN(number1, number2, ...)

-

where number1(2) is up to 30 numeric values entered manually or included into the cell you make reference to.

-

To apply the MIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MIN function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MIN Function

+

The MIN function is one of the statistical functions. It is used to analyze the range of data and find the smallest number.

+

Syntax

+

MIN(number1, [number2], ...)

+

The MIN function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the smallest number.
+

Notes

+

How to apply the MIN function.

+ +

Examples

+

The figure below displays the result returned by the MIN function.

+

MIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm index 6008af76e4..295d9d99c1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm @@ -15,25 +15,26 @@

MINA Function

-

The MINA function is one of the statistical functions. It is used to analyze the range of data and find the smallest value.

-

The MINA function syntax is:

-

MINA(number1, number2, ...)

-

where number1(2) is a data (number, text, logical value) entered manually or included into the cell you make reference to.

-

To apply the MINA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MINA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MINA Function

+

The MINA function is one of the statistical functions. It is used to analyze the range of data and find the smallest value.

+

Syntax

+

MINA(value1, [value2], ...)

+

The MINA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values (number, text, logical value) for which you want to find the smallest value.
+

Notes

+

How to apply the MINA function.

+ +

Examples

+

The figure below displays the result returned by the MINA function.

+

MINA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm index 4727a4f8c5..dce769bc64 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm @@ -15,28 +15,40 @@

MINIFS Function

-

The MINIFS function is one of the statistical functions. It is used to return the minimum value among cells specified by a given set of conditions or criteria.

-

The MINIFS function syntax is:

-

MINIFS(min_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...)

-

min_range is the range of cells in which the minimum will be determined.

-

criteria_range1 is the first selected range of cells to apply the criteria1 to.

-

criteria1 is the first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the min_range will be evaluated as minimum. It can be a value entered manually or included into the cell you make reference to.

-

criteria_range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional.

-

Note: you can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

-

To apply the MINIFS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MINIFS function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MINIFS Function

+

The MINIFS function is one of the statistical functions. It is used to return the minimum value among cells specified by a given set of conditions or criteria.

+

Syntax

+

MINIFS(min_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

+

The MINIFS function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
min_rangeThe range of cells in which the minimum will be determined.
criteria_range1The first selected range of cells to apply the criteria1 to.
criteria1The first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the min_range will be evaluated as minimum.
criteria_range2, criteria2Additional ranges of cells and their corresponding criteria. These arguments are optional.
+ +

Notes

+

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

+

How to apply the MINIFS function.

+ +

Examples

+

The figure below displays the result returned by the MINIFS function.

+

MINIFS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm index 47cc31c39a..3469cd4722 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm @@ -15,25 +15,27 @@

MINUTE Function

-

The MINUTE function is one of the date and time functions. It returns the minute (a number from 0 to 59) of the time value.

-

The MINUTE function syntax is:

-

MINUTE( time-value )

-

where time-value is a value entered manually or included into the cell you make reference to.

-

Note: the time-value may be expressed as a string value (e.g. "13:39"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39)

-

To apply the MINUTE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the MINUTE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MINUTE Function

+

The MINUTE function is one of the date and time functions. It returns the minute (a number from 0 to 59) of the time value.

+

Syntax

+

MINUTE(serial_number)

+

The MINUTE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
serial_numberThe time that contains the minute you want to find.
+

Notes

+

The serial_number may be expressed as a string value (e.g. "13:39"), a decimal number (e.g. 0.56 corresponds to 13:26) , or the result of a formula (e.g. the result of the NOW function in the default format - 9/26/12 13:39)

+

How to apply the MINUTE function.

+ +

Examples

+

The figure below displays the result returned by the MINUTE function.

+

MINUTE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm index be1d090fd9..c396175f88 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm @@ -15,26 +15,29 @@

MINVERSE Function

-

The MINVERSE function is one of the math and trigonometry functions. It is used to return the inverse matrix for a given matrix and display the first value of the returned array of numbers.

-

The MINVERSE function syntax is:

-

MINVERSE(array)

-

where array is an array of numbers.

-

Note: If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error.
- If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error.

-

To apply the MINVERSE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MINVERSE function,
  8. -
  9. select the range of cells with the mouse or enter the required argument manually, like this A1:B2,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MINVERSE Function

+

The MINVERSE function is one of the math and trigonometry functions. It is used to return the inverse matrix for a given matrix and display the first value of the returned array of numbers.

+

Syntax

+

MINVERSE(array)

+

The MINVERSE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
arrayAn array of numbers.
+

Notes

+

If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error.

+

If the number of rows in the array is not the same as the number of columns, the function will return the #VALUE! error.

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the MINVERSE function.

+ +

Examples

+

The figure below displays the result returned by the MINVERSE function.

+

MINVERSE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm index d8055f7ecf..8cd8c4207c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm @@ -15,29 +15,34 @@

MIRR Function

-

The MIRR function is one of the financial functions. It is used to calculate the modified internal rate of return for a series of periodic cash flows.

-

The MIRR function syntax is:

-

MIRR(values, finance-rate, reinvest-rate)

-

where

-

values is an array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive.

-

finance-rate is the interest rate paid on the money used in the cash flows.

-

reinvest-rate is the interest rate received on the cash reinvestment.

+

The MIRR function is one of the financial functions. It is used to calculate the modified internal rate of return for a series of periodic cash flows.

+

Syntax

+

MIRR(values, finance_rate, reinvest_rate)

+

The MIRR function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
valuesAn array that contains the series of payments occuring at regular periods. At least one of the values must be negative and at least one positive.
finance_rateThe interest rate paid on the money used in the cash flows.
reinvest_rateThe interest rate received on the cash reinvestment.
+

Notes

+

How to apply the MIRR function.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the MIRR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the MIRR function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MIRR Function

+

Examples

+

The figure below displays the result returned by the MIRR function.

+

MIRR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm index 321f3ffd27..c8e07763d4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm @@ -15,26 +15,29 @@

MMULT Function

-

The MMULT function is one of the math and trigonometry functions. It is used to return the matrix product of two arrays and display the first value of the returned array of numbers.

-

The MMULT function syntax is:

-

MMULT(array1, array2)

-

where array1, array2 is an array of numbers.

-

Note: if any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error.
- If the number of columns in array1 is not the same as the number of rows in array2, the function will return the #VALUE! error.

-

To apply the MMULT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MMULT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MMULT Function

+

The MMULT function is one of the math and trigonometry functions. It is used to return the matrix product of two arrays and display the first value of the returned array of numbers.

+

Syntax

+

MMULT(array1, array2)

+

The MMULT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
array1, array2An array of numbers.
+

Notes

+

If any of the cells in the array contain empty or non-numeric values, the function will return the #N/A error.

+

If the number of columns in array1 is not the same as the number of rows in array2, the function will return the #VALUE! error.

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the MMULT function.

+ +

Examples

+

The figure below displays the result returned by the MMULT function.

+

MMULT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm index 88e3335f78..453269dc8c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm @@ -15,28 +15,31 @@

MOD Function

-

The MOD function is one of the math and trigonometry functions. It is used to return the remainder after the division of a number by the specified divisor.

-

The MOD function syntax is:

-

MOD(x, y)

-

where

-

x is a number you wish to divide and find the remainder.

-

y is a number you wish to divide by.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

Note: if y is 0, the function returns the #DIV/0! error.

-

To apply the MOD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MOD function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MOD Function

+

The MOD function is one of the math and trigonometry functions. It is used to return the remainder after the division of a number by the specified divisor.

+

Syntax

+

MOD(number, divisor)

+

The MOD function has the following argument:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number you wish to divide and find the remainder.
divisorA number you wish to divide by.
+

Notes

+

If divisor is 0, the function returns the #DIV/0! error.

+

How to apply the MOD function.

+ +

Examples

+

The figure below displays the result returned by the MOD function.

+

MOD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm index 4a0602e5ad..de00927b6c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm @@ -15,25 +15,28 @@

MODE.MULT Function

-

The MODE.MULT function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive value in an array or range of data.

-

The MODE.MULT function syntax is:

-

MODE.MULT(number1, [, number2],...)

-

where number1, number2... is up to 255 numeric values entered manually or included into the cell you make reference to.

-

Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error.

-

To apply the MODE.MULT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MODE.MULT function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MODE.MULT Function

+

The MODE.MULT function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive values in an array or range of data.

+

Syntax

+

MODE.MULT(number1, [number2], ...)

+

The MODE.MULT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the most frequently occurring value.
+

Notes

+

Because this function returns an array of values, it must be entered as an array formula. To learn more, please read the Insert array formulas article.

+

If there is no repetitive value in the argument list, the function will return the #VALUE! error.

+

How to apply the MODE.MULT function.

+ +

Examples

+

The figure below displays the result returned by the MODE.MULT function.

+

MODE.MULT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm index e3e53469a7..c5ac1e9322 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm @@ -15,25 +15,27 @@

MODE.SNGL Function

-

The MODE.SNGL function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive, value in an array or range of data.

-

The MODE.SNGL function syntax is:

-

MODE.SNGL(number1, [, number2],...)

-

where number1, number2... is up to 255 numeric values entered manually or included into the cell you make reference to.

-

Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error.

-

To apply the MODE.SNGL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MODE.SNGL function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MODE.SNGL Function

+

The MODE.SNGL function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive, value in an array or range of data.

+

Syntax

+

MODE.SNGL(number1, [number2], ...)

+

The MODE.SNGL function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the most frequently occurring value.
+

Notes

+

If there is no repetitive value in the argument list, the function will return the #VALUE! error.

+

How to apply the MODE.SNGL function.

+ +

Examples

+

The figure below displays the result returned by the MODE.SNGL function.

+

MODE.SNGL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm index e1e510c8e0..e2ef309c0b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm @@ -15,25 +15,27 @@

MODE Function

-

The MODE function is one of the statistical functions. It is used to analyze the range of data and return the most frequently occurring value.

-

The MODE function syntax is:

-

MODE(argument-list)

-

where argument-list is up to 255 numeric values entered manually or included into the cell you make reference to.

-

Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error.

-

To apply the MODE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the MODE function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MODE Function

+

The MODE function is one of the statistical functions. It is used to analyze the range of data and return the most frequently occurring value.

+

Syntax

+

MODE(number1, [number2], ...)

+

The MODE function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the most frequently occurring value.
+

Notes

+

If there is no repetitive value in the argument list, the function will return the #VALUE! error.

+

How to apply the MODE function.

+ +

Examples

+

The figure below displays the result returned by the MODE function.

+

MODE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm index ef42ceb363..c38e60e7eb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm @@ -15,24 +15,26 @@

MONTH Function

-

The MONTH function is one of the date and time functions. It returns the month (a number from 1 to 12) of the date given in the numerical format (MM/dd/yyyy by default).

-

The MONTH function syntax is:

-

MONTH(date-value)

-

where date-value is a value entered manually or included into the cell you make reference to.

-

To apply the MONTH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the MONTH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MONTH Function

+

The MONTH function is one of the date and time functions. It returns the month (a number from 1 to 12) of the date given in the numerical format (MM/dd/yyyy by default).

+

Syntax

+

MONTH(serial_number)

+

The MONTH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
serial_numberThe date of the month you want to find.
+

Notes

+

How to apply the MONTH function.

+ +

Examples

+

The figure below displays the result returned by the MONTH function.

+

MONTH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm index 7e7990684a..7849fabd83 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm @@ -15,28 +15,31 @@

MROUND Function

-

The MROUND function is one of the math and trigonometry functions. It is used to round the number to the desired multiple.

-

The MROUND function syntax is:

-

MROUND(x, multiple)

-

where

-

x is a number you wish to round.

-

multiple is a multiple you wish to round to.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

Note: if the values of x and multiple have different signs, the function returns the #NUM! error.

-

To apply the MROUND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MROUND function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MROUND Function

+

The MROUND function is one of the math and trigonometry functions. It is used to round the number to the desired multiple.

+

Syntax

+

MROUND(number, multiple)

+

The MROUND function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number you wish to round.
multipleA multiple you wish to round to.
+

Notes

+

If the values of number and multiple have different signs, the function returns the #NUM! error.

+

How to apply the MROUND function.

+ +

Examples

+

The figure below displays the result returned by the MROUND function.

+

MROUND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm index 02883ceeda..ab6ae3d229 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm @@ -15,24 +15,26 @@

MULTINOMIAL Function

-

The MULTINOMIAL function is one of the math and trigonometry functions. It is used to return the ratio of the factorial of a sum of numbers to the product of factorials.

-

The MULTINOMIAL function syntax is:

-

MULTINOMIAL(argument-list)

-

where argument-list is is up to 30 numeric values entered manually or included into the cells you make reference to.

-

To apply the MULTINOMIAL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MULTINOMIAL function,
  8. -
  9. enter the required argument separated by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

MULTINOMIAL Function

+

The MULTINOMIAL function is one of the math and trigonometry functions. It is used to return the ratio of the factorial of a sum of numbers to the product of factorials.

+

Syntax

+

MULTINOMIAL(number1, [number2], ...)

+

The MULTINOMIAL function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to find the multinomial.
+

Notes

+

How to apply the MULTINOMIAL function.

+ +

Examples

+

The figure below displays the result returned by the MULTINOMIAL function.

+

MULTINOMIAL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/munit.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/munit.htm index bb29b5b8c1..b61700b198 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/munit.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/munit.htm @@ -15,27 +15,26 @@

MUNIT Function

-

The MUNIT function is one of the math and trigonometry functions. It is used to return the unit matrix for the specified dimension.

-

The MUNIT function syntax is:

-

MUNIT(dimension)

-

where

-

dimension is a required argument. It is an integer specifying the dimension of the unit matrix that you want to return, and returns an array. The dimension has to be greater than zero.

-

To apply the MUNIT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the MUNIT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

To return a range of values, select a required range of cells, enter the formula, and press the Ctrl+Shift+Enter key combination.

-

MUNIT Function

+

The MUNIT function is one of the math and trigonometry functions. It is used to return the unit matrix for the specified dimension.

+

Syntax

+

MUNIT(dimension)

+

The MUNIT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
dimensionAn integer specifying the dimension of the unit matrix that you want to return, and returns an array. The dimension has to be greater than zero.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the MUNIT function.

+

Examples

+

The figure below displays the result returned by the MUNIT function.

+

MUNIT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm index 25eda8e92b..0a12f88eb0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm @@ -15,14 +15,25 @@

N Function

-

The N function is one of the information functions. It is used to convert a value to a number.

-

The N function syntax is:

-

N(value)

-

where value is a value to test entered manually or included into the cell you make reference to. Below you will find the possible values and the result of their conversion:

+

The N function is one of the information functions. It is used to convert a value to a number.

+

Syntax

+

N(value)

+

The N function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueA value to test.
+

The value argument can be one of the following:

- - + + @@ -49,20 +60,12 @@
ValueNumberValueNumber
number0
-

To apply the N function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the N function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

N Function

+

Notes

+

How to apply the N function.

+ +

Examples

+

The figure below displays the result returned by the N function.

+

N Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm index d55f1d65bf..1b276b9967 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm @@ -15,22 +15,15 @@

NA Function

-

The NA function is one of the information functions. It is used to return the #N/A error value. This function does not require an argument.

-

The NA function syntax is:

-

NA()

-

To apply the NA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the NA function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

NA Function

+

The NA function is one of the information functions. It is used to return the #N/A error value. This function does not require an argument.

+

Syntax

+

NA()

+

Notes

+

How to apply the NA function.

+ +

Examples

+

The figure below displays the result returned by the NA function.

+

NA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm index f9f28b13cc..1014ad24d2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm @@ -15,29 +15,39 @@

NEGBINOM.DIST Function

-

The NEGBINOM.DIST function is one of the statistical functions. It is used to return the negative binomial distribution, the probability that there will be Number_f failures before the Number_s-th success, with Probability_s probability of a success.

-

The NEGBINOM.DIST function syntax is:

-

NEGBINOM.DIST(number-f, number-s, probability-s, cumulative)

-

where

-

number-f is the number of failures, a numeric value greater than or equal to 0.

-

number-s is the the threshold number of successes, a numeric value greater than or equal to 1.

-

probability-s is the success propability of each trial, a numeric value greater than 0, but less than 1.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the NEGBINOM.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NEGBINOM.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NEGBINOM.DIST Function

+

The NEGBINOM.DIST function is one of the statistical functions. It is used to return the negative binomial distribution, the probability that there will be Number_f failures before the Number_s-th success, with Probability_s probability of a success.

+

Syntax

+

NEGBINOM.DIST(number_f, number_s, probability_s, cumulative)

+

The NEGBINOM.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
number_fThe number of failures, a numeric value greater than or equal to 0.
number_sThe threshold number of successes, a numeric value greater than or equal to 1.
probability_sThe success propability of each trial, a numeric value greater than 0, but less than 1.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+ +

Notes

+

How to apply the NEGBINOM.DIST function.

+ +

Examples

+

The figure below displays the result returned by the NEGBINOM.DIST function.

+

NEGBINOM.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm index 2917a3580f..1e1bf73316 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm @@ -15,28 +15,34 @@

NEGBINOMDIST Function

-

The NEGBINOMDIST function is one of the statistical functions. It is used to return the negative binomial distribution.

-

The NEGBINOMDIST function syntax is:

-

NEGBINOMDIST(number-failures, number-successes, success-probability)

-

where

-

number-failures is the number of failures, a numeric value greater than or equal to 0.

-

number-successes is the the threshold number of successes, a numeric value greater than or equal to 0.

-

success-probability is the success propability of each trial, a numeric value greater than 0, but less than 1.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the NEGBINOMDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NEGBINOMDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NEGBINOMDIST Function

+

The NEGBINOMDIST function is one of the statistical functions. It is used to return the negative binomial distribution.

+

Syntax

+

NEGBINOMDIST(number_f, number_s, probability_s)

+

The NEGBINOMDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
number_fThe number of failures, a numeric value greater than or equal to 0.
number_sThe threshold number of successes, a numeric value greater than or equal to 1.
probability_sThe success propability of each trial, a numeric value greater than 0, but less than 1.
+

Notes

+

How to apply the NEGBINOMDIST function.

+ +

Examples

+

The figure below displays the result returned by the NEGBINOMDIST function.

+

NEGBINOMDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm index e10ca59d10..6b325b50ca 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm @@ -15,91 +15,102 @@

NETWORKDAYS.INTL Function

-

The NETWORKDAYS.INTL function is one of the date and time functions. It is used to return the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days.

-

The NETWORKDAYS.INTL function syntax is:

-

NETWORKDAYS.INTL(start_date, end_date, [, weekend], [, holidays])

-

where

-

start_date is the first date of the period, entered using the Date function or other date and time function.

-

end_date is the last date of the period, entered using the Date function or other date and time function.

-

weekend is an optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below.

- +

The NETWORKDAYS.INTL function is one of the date and time functions. It is used to return the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days.

+

Syntax

+

NETWORKDAYS.INTL(start_date, end_date, [weekend], [holidays])

+

The NETWORKDAYS.INTL function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + +
NumberWeekend daysArgumentDescription
1 or omittedstart_dateThe first date of the period, entered using the DATE function or other date and time function.
end_dateThe last date of the period, entered using the DATE function or other date and time function.
weekendAn optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below.
holidaysAn optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates.
+

The weekend argument can be one of the following:

+ + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - +
NumberWeekend days
1 or omitted Saturday, Sunday
22 Sunday, Monday
33 Monday, Tuesday
44 Tuesday, Wednesday
55 Wednesday, Thursday
66 Thursday, Friday
77 Friday, Saturday
1111 Sunday only
1212 Monday only
1313 Tuesday only
1414 Wednesday only
1515 Thursday only
1616 Friday only
1717 Saturday only
-

A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. "0000011" specifies that weekend days are Saturday and Sunday. The string "1111111" is not valid.

-

holidays is an optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

-

To apply the NETWORKDAYS.INTL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the NETWORKDAYS.INTL function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NETWORKDAYS.INTL Function

+

Notes

+

A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. "0000011" specifies that weekend days are Saturday and Sunday. The string "1111111" is not valid.

+

How to apply the NETWORKDAYS.INTL function.

+ +

Examples

+

The figure below displays the result returned by the NETWORKDAYS.INTL function.

+

NETWORKDAYS.INTL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm index 7859ba66a7..88b9d5d047 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm @@ -15,27 +15,35 @@

NETWORKDAYS Function

-

The NETWORKDAYS function is one of the date and time functions. It is used to return the number of the work days between two dates (start date and end-date) excluding weekends and dates considered as holidays.

-

The NETWORKDAYS function syntax is:

-

NETWORKDAYS(start-date, end-date [,holidays])

-

where

-

start-date is the first date of the period, entered using the Date function or other date and time function.

-

end-date is the last date of the period, entered using the Date function or other date and time function.

-

holidays is an optional argument that specifies which dates besides weekends are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

-

To apply the NETWORKDAYS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the NETWORKDAYS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NETWORKDAYS Function

+

The NETWORKDAYS function is one of the date and time functions. It is used to return the number of the work days between two dates (start date and end-date) excluding weekends and dates considered as holidays.

+

Syntax

+

NETWORKDAYS(start_date, end_date, [holidays])

+

The NETWORKDAYS function has the following argument:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
start_dateThe first date of the period, entered using the DATE function or other date and time function.
end_dateThe last date of the period, entered using the DATE function or other date and time function.
holidaysAn optional argument that specifies which dates besides weekends are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates.
+ +

Notes

+

How to apply the NETWORKDAYS function.

+ +

Examples

+

The figure below displays the result returned by the NETWORKDAYS function.

+

NETWORKDAYS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm index 17e69932c8..067f671b80 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm @@ -15,28 +15,30 @@

NOMINAL Function

-

The NOMINAL function is one of the financial functions. It is used to calculate the nominal annual interest rate for a security based on a specified effective annual interest rate and the number of compounding periods per year.

-

The NOMINAL function syntax is:

-

NOMINAL(effect-rate, npery)

-

where

-

effect-rate is the effective annual interest rate of the security.

-

npery is the number of compounding periods per year.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the NOMINAL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the NOMINAL function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NOMINAL Function

+

The NOMINAL function is one of the financial functions. It is used to calculate the nominal annual interest rate for a security based on a specified effective annual interest rate and the number of compounding periods per year.

+

Syntax

+

NOMINAL(effect_rate, npery)

+

The NOMINAL function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
effect_rateThe effective annual interest rate of the security.
nperyThe number of compounding periods per year.
+

Notes

+

How to apply the NOMINAL function.

+ +

Examples

+

The figure below displays the result returned by the NOMINAL function.

+

NOMINAL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm index a7e5899c25..6e91e043cb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm @@ -15,29 +15,39 @@

NORM.DIST Function

-

The NORM.DIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation.

-

The NORM.DIST function syntax is:

-

NORM.DIST(x, mean, standard-dev, cumulative)

-

where

-

x is the value you want to calculate the distribution for, any numeric value.

-

mean is the arithmetic mean of the distribution, any numeric value.

-

standard-dev is the standard deviation of the distribution, a numeric value greater than 0.

-

cumulative is the form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the NORM.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORM.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORM.DIST Function

+

The NORM.DIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation.

+

Syntax

+

NORM.DIST(x, mean, standard_dev, cumulative)

+

The NORM.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value you want to calculate the distribution for, any numeric value.
meanThe arithmetic mean of the distribution, any numeric value.
standard_devThe standard deviation of the distribution, a numeric value greater than 0.
cumulativeThe form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function.
+ +

Notes

+

How to apply the NORM.DIST function.

+ +

Examples

+

The figure below displays the result returned by the NORM.DIST function.

+

NORM.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm index cc3fa16f3f..efab3d9194 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm @@ -15,28 +15,34 @@

NORM.INV Function

-

The NORM.INV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation.

-

The NORM.INV function syntax is:

-

NORM.INV(probability, mean, standard-dev)

-

where

-

probability is the probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1.

-

mean is the arithmetic mean of the distribution, any numeric value.

-

standard-dev is the standard deviation of the distribution, a numeric value greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the NORM.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORM.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORM.INV Function

+

The NORM.INV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation.

+

Syntax

+

NORM.INV(probability, mean, standard_dev)

+

The NORM.INV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1.
meanThe arithmetic mean of the distribution, any numeric value.
standard_devThe standard deviation of the distribution, a numeric value greater than 0.
+

Notes

+

How to apply the NORM.INV function.

+ +

Examples

+

The figure below displays the result returned by the NORM.INV function.

+

NORM.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm index 0376d0ebcd..c1a5b05ba6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm @@ -15,26 +15,31 @@

NORM.S.DIST Function

-

The NORM.S.DIST function is one of the statistical functions. It is used to return the standard normal distribution (has a mean of zero and a standard deviation of one).

-

The NORM.S.DIST function syntax is:

-

NORM.S.DIST(z, cumulative)

-

where

-

z is the value at which the function should be calculated, a numeric value entered manually or included into the cell you make reference to.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.

-

To apply the NORM.S.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORM.S.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORM.S.DIST Function

+

The NORM.S.DIST function is one of the statistical functions. It is used to return the standard normal distribution (has a mean of zero and a standard deviation of one).

+

Syntax

+

NORM.S.DIST(z, cumulative)

+

The NORM.S.DIST function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
zA numeric value for which you want to find the standard normal distribution.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.
+ +

Notes

+

How to apply the NORM.S.DIST function.

+ +

Examples

+

The figure below displays the result returned by the NORM.S.DIST function.

+

NORM.S.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm index 052f681611..b509e04996 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm @@ -15,24 +15,26 @@

NORM.S.INV Function

-

The NORM.S.INV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution; the distribution has a mean of zero and a standard deviation of one.

-

The NORM.S.INV function syntax is:

-

NORM.S.INV(probability)

-

where probability is a numeric value greater than 0 but less than 1 entered manually or included into the cell you make reference to.

-

To apply the NORM.S.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORM.S.INV function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORM.S.INV Function

+

The NORM.S.INV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution; the distribution has a mean of zero and a standard deviation of one.

+

Syntax

+

NORM.S.INV(probability)

+

The NORM.S.INV function has the following argument:

+ + + + + + + + + +
ArgumentDescription
probabilityA probability corresponding to the normal distribution. A numeric value greater than 0 but less than 1.
+

Notes

+

How to apply the NORM.S.INV function.

+ +

Examples

+

The figure below displays the result returned by the NORM.S.INV function.

+

NORM.S.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm index 2707ba7798..07d451ee0b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm @@ -15,29 +15,39 @@

NORMDIST Function

-

The NORMDIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation.

-

The NORMDIST function syntax is:

-

NORMDIST(x , mean , standard-deviation , cumulative-flag)

-

where

-

x is the value you want to calculate the distribution for, any numeric value.

-

mean is the arithmetic mean of the distribution, any numeric value.

-

standard-deviation is the standard deviation of the distribution, a numeric value greater than 0.

-

cumulative-flag is the form of the function, a logical value: TRUE or FALSE. If cumulative-flag is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the NORMDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORMDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORMDIST Function

+

The NORMDIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation.

+

Syntax

+

NORMDIST(x, mean, standard_dev, cumulative)

+

The NORMDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value you want to calculate the distribution for, any numeric value.
meanThe arithmetic mean of the distribution, any numeric value.
standard_devThe standard deviation of the distribution, a numeric value greater than 0.
cumulativeThe form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function.
+ +

Notes

+

How to apply the NORMDIST function.

+ +

Examples

+

The figure below displays the result returned by the NORMDIST function.

+

NORMDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm index 4a9a4b930e..8a6e4df60b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm @@ -15,28 +15,34 @@

NORMINV Function

-

The NORMINV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation.

-

The NORMINV function syntax is:

-

NORMINV(x, mean, standard-deviation)

-

where

-

x is the probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1.

-

mean is the arithmetic mean of the distribution, any numeric value.

-

standard-deviation is the standard deviation of the distribution, a numeric value greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the NORMINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORMINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORMINV Function

+

The NORMINV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation.

+

Syntax

+

NORMINV(probability, mean, standard_dev)

+

The NORMINV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1.
meanThe arithmetic mean of the distribution, any numeric value.
standard_devThe standard deviation of the distribution, a numeric value greater than 0.
+

Notes

+

How to apply the NORMINV function.

+ +

Examples

+

The figure below displays the result returned by the NORMINV function.

+

NORMINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm index 93711ae3a2..06cc9bdb3a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm @@ -15,24 +15,26 @@

NORMSDIST Function

-

The NORMSDIST function is one of the statistical functions. It is used to return the standard normal cumulative distribution function.

-

The NORMSDIST function syntax is:

-

NORMSDIST(number)

-

where number is a numeric value entered manually or included into the cell you make reference to.

-

To apply the NORMSDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORMSDIST function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORMSDIST Function

+

The NORMSDIST function is one of the statistical functions. It is used to return the standard normal cumulative distribution function.

+

Syntax

+

NORMSDIST(z)

+

The NORMSDIST function has the following argument:

+ + + + + + + + + +
ArgumentDescription
zA numeric value for which you want to find the standard normal cumulative distribution.
+

Notes

+

How to apply the NORMSDIST function.

+ +

Examples

+

The figure below displays the result returned by the NORMSDIST function.

+

NORMSDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm index d59df5d30f..e3e6c752b0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm @@ -15,24 +15,26 @@

NORMSINV Function

-

The NORMSINV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution.

-

The NORMSINV function syntax is:

-

NORMSINV(probability)

-

where probability is a numeric value greater than 0 but less than 1 entered manually or included into the cell you make reference to.

-

To apply the NORMSINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the NORMSINV function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NORMSINV Function

+

The NORMSINV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution.

+

Syntax

+

NORMSINV(probability)

+

The NORMSINV function has the following argument:

+ + + + + + + + + +
ArgumentDescription
probabilityA probability corresponding to the normal distribution. A numeric value greater than 0 but less than 1.
+

Notes

+

How to apply the NORMSINV function.

+ +

Examples

+

The figure below displays the result returned by the NORMSINV function.

+

NORMSINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm index 63c7398284..88a6f35806 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm @@ -15,29 +15,28 @@

NOT Function

-

The NOT function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if the argument is FALSE and FALSE if the argument is TRUE.

-

The NOT function syntax is:

-

NOT(logical)

-

where logical is a value entered manually or included into the cell you make reference to.

-

To apply the NOT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the NOT function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

+

The NOT function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns TRUE if the argument is FALSE and FALSE if the argument is TRUE.

+

Syntax

+

NOT(logical)

+

The NOT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
logicalA value that can be evaluated to TRUE or FALSE.
+

Notes

+

How to apply the NOT function.

+ +

Examples

There is an argument: logical = A1<100, where A1 is 12. This logical expression is TRUE. So the function returns FALSE.

-

NOT Function: FALSE

+

NOT Function: FALSE

If we change the A1 value from 12 to 112, the function returns TRUE:

-

NOT Function: TRUE

+

NOT Function: TRUE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm index 864d8ee06d..e7fb12ec45 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm @@ -15,22 +15,15 @@

NOW Function

-

The NOW function is one of the date and time functions. It is used to add the current date and time to your spreadsheet in the following format MM/dd/yy hh:mm. This function does not require an argument.

-

The NOW function syntax is:

-

NOW()

-

To apply the NOW function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the NOW function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

NOW Function

+

The NOW function is one of the date and time functions. It is used to add the current date and time to your spreadsheet in the following format MM/dd/yy hh:mm. This function does not require an argument.

+

Syntax

+

NOW()

+

Notes

+

How to apply the NOW function.

+ +

Examples

+

The figure below displays the result returned by the NOW function.

+

NOW Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm index 01b33a9c68..a803857a94 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm @@ -15,31 +15,43 @@

NPER Function

-

The NPER function is one of the financial functions. It is used to calculate the number of periods for an investment based on a specified interest rate and a constant payment schedule.

-

The NPER function syntax is:

-

NPER(rate, pmt, pv [, [fv] [,[type]]])

-

where

-

rate is the interest rate.

-

pmt is a payment amount.

-

pv is the present value of the payments.

-

fv is the future value of an investment. It is an optional argument. If it is omitted, the function will assume fv to be 0.

-

type is the period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If it is 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the NPER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the NPER function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NPER Function

+

The NPER function is one of the financial functions. It is used to calculate the number of periods for an investment based on a specified interest rate and a constant payment schedule.

+

Syntax

+

NPER(rate, pmt, pv, [fv], [type])

+

The NPER function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate.
pmtA payment amount.
pvA present value of the payments.
fvThe future value of an investment. It is an optional argument. If it is omitted, the function will assume fv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers.

+

How to apply the NPER function.

+ +

Examples

+

The figure below displays the result returned by the NPER function.

+

NPER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm index 8b0f557860..521abfa015 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm @@ -15,27 +15,31 @@

NPV Function

-

The NPV function is one of the financial functions. It is used to calculate the net present value of an investment based on a specified discount rate.

-

The NPV function syntax is:

-

NPV(rate, argument-list)

-

where

-

rate is the discount rate.

-

argument-list is the list of the future payments.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the NPV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the NPV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NPV Function

+

The NPV function is one of the financial functions. It is used to calculate the net present value of an investment based on a specified discount rate.

+

Syntax

+

NPV(rate, value1, [value2], ...)

+

The NPV function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
rateThe discount rate.
value1/2/nUp to 255 arguments representing future payments (negative values) and income (positive values).
+ +

Notes

+

How to apply the NPV function.

+ +

Examples

+

The figure below displays the result returned by the NPV function.

+

NPV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm index cb306e1f44..f79b92c465 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm @@ -15,29 +15,35 @@

NUMBERVALUE Function

-

The NUMBERVALUE function is one of the text and data functions. Is used to convert text to a number, in a locale-independent way. If the converted text is not a number, the function will return a #VALUE! error.

-

The NUMBERVALUE function syntax is:

-

NUMBERVALUE(text [, [decimal-separator] [, [group-separator]])

-

where

-

text is text data that represents a number.

-

decimal-separator is the character used to separate the integer and fractional part of the result. It is an optional argument. If it is omitted, the current locale is used.

-

group-separator is the character used to separate groupings of numbers, such as thousands from hundreds and millions from thousands. It is an optional argument. If it is omitted, the current locale is used.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the NUMBERVALUE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the NUMBERVALUE function,
  8. -
  9. enter the required arguments separating them by commas, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

NUMBERVALUE Function

+

The NUMBERVALUE function is one of the text and data functions. Is used to convert text to a number, in a locale-independent way. If the converted text is not a number, the function will return a #VALUE! error.

+

Syntax

+

NUMBERVALUE(text, [decimal_separator], [group_separator])

+

The NUMBERVALUE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
textThe text data that represents a number.
decimal_separatorThe character used to separate the integer and fractional part of the result. It is an optional argument. If it is omitted, the current locale is used.
group_separatorThe character used to separate groupings of numbers, such as thousands from hundreds and millions from thousands. It is an optional argument. If it is omitted, the current locale is used.
+ +

Notes

+

How to apply the NUMBERVALUE function.

+ +

Examples

+

The figure below displays the result returned by the NUMBERVALUE function.

+

NUMBERVALUE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm index efd5f4db89..5f0a9e9373 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm @@ -15,27 +15,31 @@

OCT2BIN Function

-

The OCT2BIN function is one of the engineering functions. It is used to convert an octal number to a binary number.

-

The OCT2BIN function syntax is:

-

OCT2BIN(number [, num-hex-digits])

-

where

-

number is an octal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the OCT2BIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the OCT2BIN function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

OCT2BIN Function

+

The OCT2BIN function is one of the engineering functions. It is used to convert an octal number to a binary number.

+

Syntax

+

OCT2BIN(number, [places])

+

The OCT2BIN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberAn octal number.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+

Notes

+

If the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting binary number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the OCT2BIN function.

+ +

Examples

+

The figure below displays the result returned by the OCT2BIN function.

+

OCT2BIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm index a0d95e877e..8ca9476583 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm @@ -15,25 +15,27 @@

OCT2DEC Function

-

The OCT2DEC function is one of the engineering functions. It is used to convert an octal number to a decimal number.

-

The OCT2DEC function syntax is:

-

OCT2DEC(number)

-

where number is an octal number entered manually or included into the cell you make reference to.

-

Note: if the argument is not recognised as an octal number, or contains more than 10 characters, the function will return the #NUM! error.

-

To apply the OCT2DEC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the OCT2DEC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

OCT2DEC Function

+

The OCT2DEC function is one of the engineering functions. It is used to convert an octal number to a decimal number.

+

Syntax

+

OCT2DEC(number)

+

The OCT2DEC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberAn octal number.
+

Notes

+

If the argument is not recognised as an octal number, or contains more than 10 characters, the function will return the #NUM! error.

+

How to apply the OCT2DEC function.

+ +

Examples

+

The figure below displays the result returned by the OCT2DEC function.

+

OCT2DEC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm index fa76463c67..46984ca87c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm @@ -15,27 +15,31 @@

OCT2HEX Function

-

The OCT2HEX function is one of the engineering functions. It is used to convert an octal number to a hexadecimal number.

-

The OCT2HEX function syntax is:

-

OCT2HEX(number [, num-hex-digits])

-

where

-

number is an octal number entered manually or included into the cell you make reference to.

-

num-hex-digits is the number of digits to display. If omitted, the function will use the minimum number.

-

Note: if the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified num-hex-digits number is less than or equal to 0, the function will return the #NUM! error.

-

To apply the OCT2HEX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Engineering function group from the list,
  6. -
  7. click the OCT2HEX function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

OCT2HEX Function

+

The OCT2HEX function is one of the engineering functions. It is used to convert an octal number to a hexadecimal number.

+

Syntax

+

OCT2HEX(number, [places])

+

The OCT2HEX function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberAn octal number.
placesThe number of digits to display. If omitted, the function will use the minimum number.
+

Notes

+

If the argument is not recognised as an octal number, or contains more than 10 characters, or the resulting hexadecimal number requires more digits than you specified, or the specified places number is less than or equal to 0, the function will return the #NUM! error.

+

How to apply the OCT2HEX function.

+ +

Examples

+

The figure below displays the result returned by the OCT2HEX function.

+

OCT2HEX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm index 53bad960fe..6084a8ab25 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm @@ -15,24 +15,26 @@

ODD Function

-

The ODD function is one of the math and trigonometry functions. It is used to round the number up to the nearest odd integer.

-

The ODD function syntax is:

-

ODD(x)

-

where x is a number you wish to round up, a numeric value entered manually or included into the cell you make reference to.

-

To apply the ODD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ODD function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ODD Function

+

The ODD function is one of the math and trigonometry functions. It is used to round the number up to the nearest odd integer.

+

Syntax

+

ODD(number)

+

The ODD function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA number you wish to round up.
+

Notes

+

How to apply the ODD function.

+ +

Examples

+

The figure below displays the result returned by the ODD function.

+

ODD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm index 75976be3af..7174a26ea9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm @@ -15,62 +15,87 @@

ODDFPRICE Function

-

The ODDFPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest but has an odd first period (it is shorter or longer than other periods).

-

The ODDFPRICE function syntax is:

-

ODDFPRICE(settlement, maturity, issue, first-coupon, rate, yld, redemption, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

issue is the issue date of the security.

-

first-coupon is the first coupon date. This date must be after the settlement date but before the maturity date.

-

rate is the security interest rate.

-

yld is the annual yield of the security.

-

redemption is the redemption value of the security, per $100 par value.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The ODDFPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest but has an odd first period (it is shorter or longer than other periods).

+

Syntax

+

ODDFPRICE(settlement, maturity, issue, first_coupon, rate, yld, redemption, frequency, [basis])

+

The ODDFPRICE function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
issueThe issue date of the security.
first_couponThe first coupon date. This date must be after the settlement date but before the maturity date.
rateThe security interest rate.
yldThe annual yield of the security.
redemptionThe redemption value of the security, per $100 par value.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ODDFPRICE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ODDFPRICE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ODDFPRICE Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the ODDFPRICE function.

+ +

Examples

+

The figure below displays the result returned by the ODDFPRICE function.

+

ODDFPRICE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm index dbff8437d1..21f09e6957 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm @@ -15,62 +15,87 @@

ODDFYIELD Function

-

The ODDFYIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest but has an odd first period (it is shorter or longer than other periods).

-

The ODDFYIELD function syntax is:

-

ODDFYIELD(settlement, maturity, issue, first-coupon, rate, pr, redemption, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

issue is the issue date of the security.

-

first-coupon is the first coupon date. This date must be after the settlement date but before the maturity date.

-

rate is the security interest rate.

-

pr is the purchase price of the security, per $100 par value.

-

redemption is the redemption value of the security, per $100 par value.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The ODDFYIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest but has an odd first period (it is shorter or longer than other periods).

+

Syntax

+

ODDFYIELD(settlement, maturity, issue, first_coupon, rate, pr, redemption, frequency, [basis])

+

The ODDFYIELD function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
issueThe issue date of the security.
first_couponThe first coupon date. This date must be after the settlement date but before the maturity date.
rateThe security interest rate.
prThe purchase price of the security, per $100 par value.
redemptionThe redemption value of the security, per $100 par value.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ODDFYIELD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ODDFYIELD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ODDFYIELD Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the ODDFYIELD function.

+ +

Examples

+

The figure below displays the result returned by the ODDFYIELD function.

+

ODDFYIELD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm index bd2005a4c4..2e44f59487 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm @@ -15,61 +15,83 @@

ODDLPRICE Function

-

The ODDLPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest but has an odd last period (it is shorter or longer than other periods).

-

The ODDLPRICE function syntax is:

-

ODDLPRICE(settlement, maturity, last-interest, rate, yld, redemption, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

last-interest is the last coupon date. This date must be before the settlement date.

-

rate is the security interest rate.

-

yld is the annual yield of the security.

-

redemption is the redemption value of the security, per $100 par value.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The ODDLPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest but has an odd last period (it is shorter or longer than other periods).

+

Syntax

+

ODDLPRICE(settlement, maturity, last_interest, rate, yld, redemption, frequency, [basis])

+

The ODDLPRICE function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
last_interestThe last coupon date. This date must be before the settlement date.
rateThe security interest rate.
yldThe annual yield of the security.
redemptionThe redemption value of the security, per $100 par value.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ODDLPRICE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ODDLPRICE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ODDLPRICE Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the ODDLPRICE function.

+ +

Examples

+

The figure below displays the result returned by the ODDLPRICE function.

+

ODDLPRICE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm index 64a2810140..6b15ae5b6e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm @@ -15,61 +15,83 @@

ODDLYIELD Function

-

The ODDLYIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest but has an odd last period (it is shorter or longer than other periods).

-

The ODDLYIELD function syntax is:

-

ODDLYIELD(settlement, maturity, last-interest, rate, pr, redemption, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

last-interest is the last coupon date. This date must be before the settlement date.

-

rate is the security interest rate.

-

pr is the purchase price of the security, per $100 par value.

-

redemption is the redemption value of the security, per $100 par value.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The ODDLYIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest but has an odd last period (it is shorter or longer than other periods).

+

Syntax

+

ODDLYIELD(settlement, maturity, last_interest, rate, pr, redemption, frequency, [basis])

+

The ODDLYIELD function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
last_interestThe last coupon date. This date must be before the settlement date.
rateThe security interest rate.
prThe purchase price of the security, per $100 par value.
redemptionThe redemption value of the security, per $100 par value.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ODDLYIELD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the ODDLYIELD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ODDLYIELD Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the ODDLYIELD function.

+ +

Examples

+

The figure below displays the result returned by the ODDLYIELD function.

+

ODDLYIELD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm index d64066667a..0c7a0613be 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm @@ -15,29 +15,44 @@

OFFSET Function

-

The OFFSET function is one of the lookup and reference functions. It is used to return a reference to a cell displaced from the specified cell (or the upper-left cell in the range of cells) to a certain number of rows and columns.

-

The OFFSET function syntax is:

-

OFFSET(reference, rows, cols[, [height] [, [width]]])

-

where

-

reference is a reference to an initial cell or range of cells.

-

rows is a number of rows, up or down, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift below the initial cell. Negative values mean it will shift above the initial cell.

-

cols is a number of columns, to the left or right, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift to the right of the initial cell. Negative values mean it will shift to the left of the initial cell.

-

height is a number of rows in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range height.

-

width is a number of columns in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range width.

-

To apply the OFFSET function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the OFFSET function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

OFFSET Function

+

The OFFSET function is one of the lookup and reference functions. It is used to return a reference to a cell displaced from the specified cell (or the upper-left cell in the range of cells) to a certain number of rows and columns.

+

Syntax

+

OFFSET(reference, rows, cols, [height], [width])

+

The OFFSET function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
referenceA reference to an initial cell or range of cells.
rowsA number of rows, up or down, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift below the initial cell. Negative values mean it will shift above the initial cell.
colsA number of columns, to the left or right, that you want the upper-left cell in the returned reference to refer to. Positive numbers mean the result will shift to the right of the initial cell. Negative values mean it will shift to the left of the initial cell.
heightA number of rows in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range height.
widthA number of columns in the returned reference. The value must be a positive number. It's an optional argument. If it is omitted, the function will assume it to be equal to the initial range width.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the OFFSET function.

+ +

Examples

+

The figure below displays the result returned by the OFFSET function.

+

OFFSET Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm index 70649b45ed..cf9d95492e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm @@ -15,30 +15,29 @@

OR Function

-

The OR function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns FALSE if all the arguments are FALSE.

-

The OR function syntax is:

-

OR(logical1, logical2, ...)

-

where logical1 is a value entered manually or included into the cell you make reference to.

-

To apply the OR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the OR function,
  8. -
  9. enter the required arguments separating them by commas, -

    Note: you can enter up to 255 logical values.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell. The function returns TRUE if at least one of the argument is TRUE.

-

For example:

+

The OR function is one of the logical functions. It is used to check if the logical value you enter is TRUE or FALSE. The function returns FALSE if all the arguments are FALSE.

+

Syntax

+

OR(logical1, [logical2], ...)

+

The OR function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
logical1/2/nA condition that you want to check if it is TRUE or FALSE
+

Notes

+

You can enter up to 255 logical values.

+

How to apply the OR function.

+

The function returns TRUE if at least one of the argument is TRUE.

+

Examples

There are three arguments: logical1 = A1<10, logical2 = 34<10, logical3 = 50<10, where A1 is 12. All these logical expressions are FALSE. So the function returns FALSE.

-

OR Function: FALSE

+

OR Function: FALSE

If we change the A1 value from 12 to 2, the function returns TRUE:

-

OR Function: TRUE

+

OR Function: TRUE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pduration.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pduration.htm index 4942e7cfe9..cc64653b29 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pduration.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pduration.htm @@ -15,31 +15,35 @@

PDURATION Function

-

The PDURATION function is one of the financial functions. It is used to calculate the number of periods required by an investment to reach a specified value.

-

The PDURATION function syntax is:

-

PDURATION(rate, pv, fv)

-

where

-

rate is the interest rate per period.

-

pv is the present value of the investment.

-

fv is the desired future value of the investment.

+

The PDURATION function is one of the financial functions. It is used to calculate the number of periods required by an investment to reach a specified value.

+

Syntax

+

PDURATION(rate, pv, fv)

+

The PDURATION function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate per period.
pvThe present value of the investment.
fvThe desired future value of the investment.
+

Notes

+

All arguments must be represented by positive numbers.

+

How to apply the PDURATION function.

-

Note: all arguments must be represented by positive numbers.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the PDURATION function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PDURATION function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PDURATION Function

+

Examples

+

The figure below displays the result returned by the PDURATION function.

+

PDURATION Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm index 9745dffe42..53b03271ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm @@ -15,25 +15,27 @@

PEARSON Function

-

The PEARSON function is one of the statistical functions. It is used to return the Pearson product moment correlation coefficient.

-

The PEARSON function syntax is:

-

PEARSON(array-1, array-2)

-

where array-1 and array-2 are the selected ranges of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the PEARSON function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PEARSON function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PEARSON Function

+

The PEARSON function is one of the statistical functions. It is used to return the Pearson product moment correlation coefficient.

+

Syntax

+

PEARSON(array1, array2)

+

The PEARSON function has the following argument:

+ + + + + + + + + +
ArgumentDescription
array1/2The selected ranges of cells with the same number of elements.
+

Notes

+

If array1/2 contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the PEARSON function.

+ +

Examples

+

The figure below displays the result returned by the PEARSON function.

+

PEARSON Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm index 23f4c3bf28..f2628b8017 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm @@ -15,26 +15,30 @@

PERCENTILE.EXC Function

-

The PERCENTILE.EXC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, exclusive.

-

The PERCENTILE.EXC function syntax is:

-

PERCENTILE.EXC(array, k)

-

where

-

array is the selected range of cells for which you want to calculate the k-th percentile.

-

k is the percentile value, a numeric value greater than 0 but less than 1, entered manually or included into the cell you make reference to.

-

To apply the PERCENTILE.EXC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERCENTILE.EXC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERCENTILE.EXC Function

+

The PERCENTILE.EXC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, exclusive.

+

Syntax

+

PERCENTILE.EXC(array, k)

+

The PERCENTILE.EXC function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells for which you want to calculate the k-th percentile.
kThe percentile value, a numeric value greater than 0 but less than 1.
+

Notes

+

How to apply the PERCENTILE.EXC function.

+ +

Examples

+

The figure below displays the result returned by the PERCENTILE.EXC function.

+

PERCENTILE.EXC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm index 9976bd18f2..25a60a29d8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm @@ -15,26 +15,30 @@

PERCENTILE.INC Function

-

The PERCENTILE.INC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, inclusive.

-

The PERCENTILE.INC function syntax is:

-

PERCENTILE.INC(array, k)

-

where

-

array is the selected range of cells for which you want to calculate the k-th percentile.

-

k is the percentile value, a numeric value greater than or equal to 0 but less than or equal to 1, entered manually or included into the cell you make reference to.

-

To apply the PERCENTILE.INC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERCENTILE.INC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERCENTILE.INC Function

+

The PERCENTILE.INC function is one of the statistical functions. It is used to return the k-th percentile of values in a range, where k is in the range 0..1, inclusive.

+

Syntax

+

PERCENTILE.INC(array, k)

+

The PERCENTILE.INC function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells for which you want to calculate the k-th percentile.
kThe percentile value, a numeric value greater than or equal to 0 but less than or equal to 1.
+

Notes

+

How to apply the PERCENTILE.INC function.

+ +

Examples

+

The figure below displays the result returned by the PERCENTILE.INC function.

+

PERCENTILE.INC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm index c0652eca21..c094fcc5d3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm @@ -15,26 +15,31 @@

PERCENTILE Function

-

The PERCENTILE function is one of the statistical functions. It is used to analyze the range of data and return the k-th percentile.

-

The PERCENTILE function syntax is:

-

PERCENTILE(array, k)

-

where

-

array is the selected range of cells for which you want to calculate the k-th percentile.

-

k is the percentile value, a numeric value greater than or equal to 0 but less than or equal to 1, entered manually or included into the cell you make reference to.

-

To apply the PERCENTILE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERCENTILE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERCENTILE Function

+

The PERCENTILE function is one of the statistical functions. It is used to analyze the range of data and return the k-th percentile.

+

Syntax

+

PERCENTILE(array, k)

+

The PERCENTILE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells for which you want to calculate the k-th percentile.
kThe percentile value, a numeric value greater than or equal to 0 but less than or equal to 1.
+ +

Notes

+

How to apply the PERCENTILE function.

+ +

Examples

+

The figure below displays the result returned by the PERCENTILE function.

+

PERCENTILE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm index 8ca673a07b..2f7a1d8add 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm @@ -15,27 +15,35 @@

PERCENTRANK.EXC Function

-

The PERCENTRANK.EXC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, exclusive) of the data set.

-

The PERCENTRANK.EXC function syntax is:

-

PERCENTRANK.EXC(array, x[, significance])

-

where

-

array is the selected range of cells containing the numeric values.

-

x is the value you want to find the rank for, a numeric value entered manually or included into the cell you make reference to.

-

significance is the number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3.

-

To apply the PERCENTRANK.EXC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERCENTRANK.EXC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERCENTRANK.EXC Function

+

The PERCENTRANK.EXC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, exclusive) of the data set.

+

Syntax

+

PERCENTRANK.EXC(array, x, [significance])

+

The PERCENTRANK.EXC function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells containing the numeric values.
xThe value you want to find the rank for, a numeric value.
significanceThe number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3.
+ +

Notes

+

How to apply the PERCENTRANK.EXC function.

+ +

Examples

+

The figure below displays the result returned by the PERCENTRANK.EXC function.

+

PERCENTRANK.EXC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm index fc65888cf1..021ccc5aae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm @@ -15,27 +15,35 @@

PERCENTRANK.INC Function

-

The PERCENTRANK.INC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, inclusive) of the data set.

-

The PERCENTRANK.INC function syntax is:

-

PERCENTRANK.INC(array, x[, significance])

-

where

-

array is the selected range of cells containing the numeric values.

-

x is the value you want to find the rank for, a numeric value entered manually or included into the cell you make reference to.

-

significance is the number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3.

-

To apply the PERCENTRANK.INC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERCENTRANK.INC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERCENTRANK.INC Function

+

The PERCENTRANK.INC function is one of the statistical functions. It is used to return the rank of a value in a data set as a percentage (0..1, inclusive) of the data set.

+

Syntax

+

PERCENTRANK.INC(array, x, [significance])

+

The PERCENTRANK.INC function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells containing the numeric values.
xThe value you want to find the rank for, a numeric value.
significanceThe number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3.
+ +

Notes

+

How to apply the PERCENTRANK.INC function.

+ +

Examples

+

The figure below displays the result returned by the PERCENTRANK.INC function.

+

PERCENTRANK.INC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm index b80b2c2c42..fc14fc8b05 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm @@ -15,27 +15,34 @@

PERCENTRANK Function

-

The PERCENTRANK function is one of the statistical functions. It is used to return the rank of a value in a set of values as a percentage of the set.

-

The PERCENTRANK function syntax is:

-

PERCENTRANK(array, x[, significance])

-

where

-

array is the selected range of cells containing the numeric values.

-

x is the value you want to find the rank for, a numeric value entered manually or included into the cell you make reference to.

-

significance is the number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3.

-

To apply the PERCENTRANK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERCENTRANK function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERCENTRANK Function

+

The PERCENTRANK function is one of the statistical functions. It is used to return the rank of a value in a set of values as a percentage of the set.

+

Syntax

+

PERCENTRANK(array, x, [significance])

+

The PERCENTRANK function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells containing the numeric values.
xThe value you want to find the rank for, a numeric value.
significanceThe number of significant digits to return the rank for. It is an optional argument. If it is omitted, the function will assume significance to be 3.
+

Notes

+

How to apply the PERCENTRANK function.

+ +

Examples

+

The figure below displays the result returned by the PERCENTRANK function.

+

PERCENTRANK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm index 95d8f14823..6626e3c427 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm @@ -15,27 +15,30 @@

PERMUT Function

-

The PERMUT function is one of the statistical functions. It is used to return the number of permutations for a specified number of items.

-

The PERMUT function syntax is:

-

PERMUT(number, number-chosen)

-

where

-

number is a number of items.

-

number-chosen is a number of items in one permutation.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the PERMUT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERMUT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERMUT Function

+

The PERMUT function is one of the statistical functions. It is used to return the number of permutations for a specified number of items.

+

Syntax

+

PERMUT(number, number_chosen)

+

The PERMUT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number of items.
number_chosenA number of items in one permutation.
+

Notes

+

How to apply the PERMUT function.

+ +

Examples

+

The figure below displays the result returned by the PERMUT function.

+

PERMUT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm index 86a33c2384..62e9e4398e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm @@ -15,27 +15,31 @@

PERMUTATIONA Function

-

The PERMUTATIONA function is one of the statistical functions. It is used to return the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects.

-

The PERMUTATIONA function syntax is:

-

PERMUTATIONA(number, number-chosen)

-

where

-

number is a number of items in the set, a numeric value greater than or equal to 0.

-

number-chosen is a number of items in one permutation, a numeric value greater than or equal to 0 and less than number.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the PERMUTATIONA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PERMUTATIONA function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PERMUTATIONA Function

+

The PERMUTATIONA function is one of the statistical functions. It is used to return the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects.

+

Syntax

+

PERMUTATIONA(number, number_chosenn)

+

The PERMUTATIONA function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number of items in the set, a numeric value greater than or equal to 0.
number_chosenA number of items in one permutation, a numeric value greater than or equal to 0 and less than number.
+ +

Notes

+

How to apply the PERMUTATIONA function.

+ +

Examples

+

The figure below displays the result returned by the PERMUTATIONA function.

+

PERMUTATIONA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm index d8667562ba..6bc52dd9b6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm @@ -15,26 +15,26 @@

PHI Function

-

The PHI function is one of the statistical functions. It is used to return the value of the density function for a standard normal distribution.

-

The PHI function syntax is:

-

PHI(x)

-

where

-

x is the value you want to calculate the density function for, any numeric value.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the PHI function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PHI function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

+

The PHI function is one of the statistical functions. It is used to return the value of the density function for a standard normal distribution.

+

Syntax

+

PHI(x)

+

The PHI function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
xThe value you want to calculate the density function for, any numeric value.
+

Notes

+

How to apply the PHI function.

+ +

Examples

+

The figure below displays the result returned by the PHI function.

+

PHI Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm index 71c9a1236c..4335abb26a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm @@ -15,22 +15,15 @@

PI Function

-

The PI function is one of the math and trigonometry functions. The function returns the mathematical constant pi, equal to 3.14159265358979. It does not require any argument.

-

The PI function syntax is:

-

PI()

-

To apply the PI function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the PI function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

+

The PI function is one of the math and trigonometry functions. The function returns the mathematical constant pi, equal to 3.14159265358979. It does not require any argument.

+

Syntax

+

PI()

+

Notes

+

How to apply the PI function.

+ +

Examples

+

The figure below displays the result returned by the PI function.

+

PI Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm index bcdaddfa98..37d83b33ce 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm @@ -15,31 +15,43 @@

PMT Function

-

The PMT function is one of the financial functions. It is used to calculate the payment amount for a loan based on a specified interest rate and a constant payment schedule.

-

The PMT function syntax is:

-

PMT(rate, nper, pv [, [fv] [,[type]]])

-

where

-

rate is the interest rate.

-

nper is the number of payments.

-

pv is the present value.

-

fv is the future value outstanding after all the payments are made. It is an optional argument. If it is omitted, the function will assume fv to be 0.

-

type is the period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the PMT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PMT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PMT Function

+

The PMT function is one of the financial functions. It is used to calculate the payment amount for a loan based on a specified interest rate and a constant payment schedule.

+

Syntax

+

PMT(rate, nper, pv, [fv], [type)

+

The PMT function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate.
nperThe number of payments.
pvThe present value.
fvThe future value outstanding after all the payments are made. It is an optional argument. If it is omitted, the function will assume fv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the PMT function.

+ +

Examples

+

The figure below displays the result returned by the PMT function.

+

PMT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm index a0cea11ef7..dfddfb0752 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm @@ -15,28 +15,34 @@

POISSON.DIST Function

-

The POISSON.DIST function is one of the statistical functions. It is used to return the Poisson distribution; a common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute.

-

The POISSON.DIST function syntax is:

-

POISSON.DIST(x, mean, cumulative)

-

where

-

x is the number of events, a numeric value greater than 0.

-

mean is the expected numeric value greater than 0.

-

cumulative is the form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the POISSON.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the POISSON.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

POISSON.DIST Function

+

The POISSON.DIST function is one of the statistical functions. It is used to return the Poisson distribution; a common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute.

+

Syntax

+

POISSON.DIST(x, mean, cumulative)

+

The POISSON.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe number of events, a numeric value greater than 0.
meanThe expected numeric value greater than 0.
cumulativeThe form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function.
+

Notes

+

How to apply the POISSON.DIST function.

+ +

Examples

+

The figure below displays the result returned by the POISSON.DIST function.

+

POISSON.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm index 0b071c3817..06f4f43df0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm @@ -15,28 +15,35 @@

POISSON Function

-

The POISSON function is one of the statistical functions. It is used to return the Poisson distribution.

-

The POISSON function syntax is:

-

POISSON(x, mean, cumulative-flag)

-

where

-

x is the number of events, a numeric value greater than 0.

-

mean is the expected numeric value greater than 0.

-

cumulative-flag is the form of the function, a logical value: TRUE or FALSE. If cumulative-flag is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the POISSON function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the POISSON function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

POISSON Function

+

The POISSON function is one of the statistical functions. It is used to return the Poisson distribution.

+

Syntax

+

POISSON(x, mean, cumulative)

+

The POISSON function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe number of events, a numeric value greater than 0.
meanThe expected numeric value greater than 0.
cumulativeThe form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function.
+ +

Notes

+

How to apply the POISSON function.

+ +

Examples

+

The figure below displays the result returned by the POISSON function.

+

POISSON Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm index 10c70d4ed4..c4bb0e47e7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm @@ -15,27 +15,31 @@

POWER Function

-

The POWER function is one of the math and trigonometry functions. It is used to return the result of a number raised to the desired power.

-

The POWER function syntax is:

-

POWER(x, y)

-

where

-

x is a number you wish to raise.

-

y is a power you wish to raise the number to.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the POWER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the POWER function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

POWER Function

+

The POWER function is one of the math and trigonometry functions. It is used to return the result of a number raised to the desired power.

+

Syntax

+

POWER(number, power)

+

The POWER function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number you wish to raise.
powerA power you wish to raise the number to.
+ +

Notes

+

How to apply the POWER function.

+ +

Examples

+

The figure below displays the result returned by the POWER function.

+

POWER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm index 23912ea59b..82e7abe330 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm @@ -15,32 +15,48 @@

PPMT Function

-

The PPMT function is one of the financial functions. It is used to calculate the principal payment for an investment based on a specified interest rate and a constant payment schedule.

-

The PPMT function syntax is:

-

PPMT(rate, per, nper, pv [, [fv] [,[type]]])

-

where

-

rate is the interest rate for the investment.

-

per is the period you want to find the principal payment for. The value must be from 1 to nper.

-

nper is a number of payments.

-

pv is a present value of the payments.

-

fv is a future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0.

-

type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the PPMT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PPMT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PPMT Function

+

The PPMT function is one of the financial functions. It is used to calculate the principal payment for an investment based on a specified interest rate and a constant payment schedule.

+

Syntax

+

PPMT(rate, per, nper, pv, [fv] ,[type])

+

The PPMT function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate for the investment.
perThe period you want to find the principal payment for. The value must be from 1 to nper.
nperThe number of payments.
pvThe present value of the payments.
fvThe future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the PPMT function.

+ +

Examples

+

The figure below displays the result returned by the PPMT function.

+

PPMT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm index 66a646ee15..e22ec65155 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm @@ -15,59 +15,79 @@

PRICE Function

-

The PRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest.

-

The PRICE function syntax is:

-

PRICE(settlement, maturity, rate, yld, redemption, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

rate is the annual coupon rate of the security.

-

yld is the annual yield of the security.

-

redemption is the redemption value of the security, per $100 par value.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The PRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays periodic interest.

+

Syntax

+

PRICE(settlement, maturity, rate, yld, redemption, frequency, [basis])

+

The PRICE function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
rateThe annual coupon rate of the security.
yldThe annual yield of the security.
redemptionThe redemption value of the security, per $100 par value.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the PRICE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PRICE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PRICE Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the PRICE function.

+ +

Examples

+

The figure below displays the result returned by the PRICE function.

+

PRICE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm index d9eeab5dd6..72dabee7b9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm @@ -15,58 +15,71 @@

PRICEDISC Function

-

The PRICEDISC function is one of the financial functions. It is used to calculate the price per $100 par value for a discounted security.

-

The PRICEDISC function syntax is:

-

PRICEDISC(settlement, maturity, discount, redemption[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

discount is the security discount rate.

-

redemption is the redemption value of the security, per $100 par value.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The PRICEDISC function is one of the financial functions. It is used to calculate the price per $100 par value for a discounted security.

+

Syntax

+

PRICEDISC(settlement, maturity, discount, redemption, [basis])

+

The PRICEDISC function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
discountThe security discount rate.
redemptionThe redemption value of the security, per $100 par value.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the PRICEDISC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PRICEDISC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PRICEDISC Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the PRICEDISC function.

+ +

Examples

+

The figure below displays the result returned by the PRICEDISC function.

+

PRICEDISC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm index 67f46171b5..740bf61945 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm @@ -15,59 +15,74 @@

PRICEMAT Function

-

The PRICEMAT function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays interest at maturity.

-

The PRICEMAT function syntax is:

-

PRICEMAT(settlement, maturity, issue, rate, yld[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

issue is the issue date of the security.

-

rate is the security interest rate at the issue date.

-

yld is the annual yield of the security.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The PRICEMAT function is one of the financial functions. It is used to calculate the price per $100 par value for a security that pays interest at maturity.

+

Syntax

+

PRICEMAT(settlement, maturity, issue, rate, yld, [basis])

+

The PRICEMAT function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
issueThe issue date of the security.
rateThe security interest rate at the issue date.
yldThe annual yield of the security.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the PRICEMAT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PRICEMAT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PRICEMAT Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the PRICEMAT function.

+ +

Examples

+

The figure below displays the result returned by the PRICEMAT function.

+

PRICEMAT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm index 43c2b8eeaa..3f5bf61ee7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm @@ -15,29 +15,40 @@

PROB Function

-

The PROB function is one of the statistical functions. It is used to return the probability that values in a range are between lower and upper limits.

-

The PROB function syntax is:

-

PROB(x-range, probability-range, lower-limit[, upper-limit])

-

where

-

x-range is the selected range of cells containing numeric values you want to associate the probabilities with.

-

probability-range is a set of probabilities associated with values in x-range, the selected range of cells containing numeric values greater than 0 but less than 1. The sum of the values in probability-range should be equal to 1, otherwise the function will return the #NUM! error.

-

Note: x-range should contain the same number of elements as probability-range.

-

lower-limit is the lower bound of the value, a numeric value entered manually or included into the cell you make reference to.

-

upper-limit is the upper bound of the value, a numeric value entered manually or included into the cell you make reference to. It is an optional argument. If it is omitted, the function will return the probability equal to lower-limit.

-

To apply the PROB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the PROB function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PROB Function

+

The PROB function is one of the statistical functions. It is used to return the probability that values in a range are between lower and upper limits.

+

Syntax

+

PROB(x_range, prob_range, [lower_limit], [upper_limit])

+

The PROB function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
x_rangeThe selected range of cells containing numeric values you want to associate the probabilities with.
prob_rangeA set of probabilities associated with values in x_range, the selected range of cells containing numeric values greater than 0 but less than 1. The sum of the values in prob_range should be equal to 1, otherwise the function will return the #NUM! error.
lower_limitThe lower bound of the value, a numeric value entered manually or included into the cell you make reference to.
upper_limitThe upper bound of the value, a numeric value entered manually or included into the cell you make reference to. It is an optional argument. If it is omitted, the function will return the probability equal to lower_limit.
+ +

Notes

+

x_range should contain the same number of elements as prob_range.

+

How to apply the PROB function.

+ +

Examples

+

The figure below displays the result returned by the PROB function.

+

PROB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm index be3fda7ca9..0feeaa3d06 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm @@ -15,24 +15,26 @@

PRODUCT Function

-

The PRODUCT function is one of the math and trigonometry functions. It is used to multiply all the numbers in the selected range of cells and return the product.

-

The PRODUCT function syntax is:

-

PRODUCT(argument-list)

-

where argument-list is a set of numeric values entered manually or included into the cells you make reference to.

-

To apply the PRODUCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the PRODUCT function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PRODUCT Function

+

The PRODUCT function is one of the math and trigonometry functions. It is used to multiply all the numbers in the selected range of cells and return the product.

+

Syntax

+

PRODUCT(number1, [number2], ...)

+

The PRODUCT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values that you want to multiply.
+

Notes

+

How to apply the PRODUCT function.

+ +

Examples

+

The figure below displays the result returned by the PRODUCT function.

+

PRODUCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm index 11d98218a6..cb64965021 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm @@ -15,25 +15,26 @@

PROPER Function

-

The PROPER function is one of the text and data functions. Is used to convert the first character of each word to uppercase and all the remaining characters to lowercase.

-

The PROPER function syntax is:

-

PROPER(text)

-

where text is data entered manually or included into the cell you make reference to.

-

To apply the PROPER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the PROPER function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PROPER Function

+

The PROPER function is one of the text and data functions. Is used to convert the first character of each word to uppercase and all the remaining characters to lowercase.

+

Syntax

+

PROPER(text)

+

The PROPER function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text that you want to partially capitalize.
+

Notes

+

How to apply the PROPER function.

+ +

Examples

+

The figure below displays the result returned by the PROPER function.

+

PROPER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm index 9c40f9aa26..e2e1f6ab17 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm @@ -15,31 +15,44 @@

PV Function

-

The PV function is one of the financial functions. It is used to calculate the present value of an investment based on a specified interest rate and a constant payment schedule.

-

The PV function syntax is:

-

PV(rate, nper, pmt [, [fv] [,[type]]])

-

where

-

rate is the interest rate.

-

nper is the number of payments.

-

pmt is the payment amount.

-

fv is the future value. It is an optional argument. If it is omitted, the function will assume fv to be 0.

-

type is the period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the PV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the PV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

PV Function

+

The PV function is one of the financial functions. It is used to calculate the present value of an investment based on a specified interest rate and a constant payment schedule.

+

Syntax

+

PV(rate, nper, pmt, [fv], [type])

+

The PV function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe interest rate.
nperThe number of payments.
pmtThe payment amount.
fvThe future value. It is an optional argument. If it is omitted, the function will assume fv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
+ +

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for rate and nper must be consistent: use N%/12 for rate and N*12 for nper in case of monthly payments, N%/4 for rate and N*4 for nper in case of quarterly payments, N% for rate and N for nper in case of annual payments.

+

How to apply the PV function.

+ +

Examples

+

The figure below displays the result returned by the PV function.

+

PV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm index 47f27cdbcd..cb62248420 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm @@ -15,44 +15,50 @@

QUARTILE.EXC Function

-

The QUARTILE.EXC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, exclusive.

-

The QUARTILE.EXC function syntax is:

-

QUARTILE.EXC(array, quart)

-

where

-

array is the selected range of cells you want to analyse,

-

quart is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following:

+

The QUARTILE.EXC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, exclusive.

+

Syntax

+

QUARTILE.EXC(array, quart)

+

The QUARTILE.EXC function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells you want to analyse.
quartThe quartile value that you wish to return, a numeric value. The possible values are listed in the table below.
+ +

The quart argument can be one of the following:

- - + + - + - + - +
Numeric valueQuartileNumeric valueQuartile
11 First quartile (25th percentile)
22 Second quartile (50th percentile)
33 Third quartile (75th percentile)
-

To apply the QUARTILE.EXC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the QUARTILE.EXC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

QUARTILE.EXC Function

+

Notes

+

How to apply the QUARTILE.EXC function.

+ +

Examples

+

The figure below displays the result returned by the QUARTILE.EXC function.

+

QUARTILE.EXC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm index 92d77b9075..06683b221f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm @@ -15,53 +15,58 @@

QUARTILE.INC Function

-

The QUARTILE.INC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, inclusive.

-

The QUARTILE.INC function syntax is:

-

QUARTILE.INC(array, quart)

-

where

-

array is the selected range of cells you want to analyse,

-

quart is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following:

- +

The QUARTILE.INC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, inclusive.

+

Syntax

+

QUARTILE.INC(array, quart)

+

The QUARTILE.INC function has the following arguments:

+
- - + + - + + + + + + + +
Numeric valueQuartileArgumentDescription
0arrayThe selected range of cells you want to analyse.
quartThe quartile value that you wish to return, a numeric value. The possible values are listed in the table below.
+ +

The quart argument can be one of the following:

+ + + + + + + - + - + - + - + -
Numeric valueQuartile
0 Smallest value in the range of data
11 First quartile (25th percentile)
22 Second quartile (50th percentile)
33 Third quartile (75th percentile)
44 Largest value in the data set
-

To apply the QUARTILE.INC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the QUARTILE.INC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

QUARTILE.INC Function

+

Notes

+

How to apply the QUARTILE.INC function.

+ +

Examples

+

The figure below displays the result returned by the QUARTILE.INC function.

+

QUARTILE.INC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm index 4daf42b627..7b4f0724a2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm @@ -15,53 +15,58 @@

QUARTILE Function

-

The QUARTILE function is one of the statistical functions. It is used to analyze the range of data and return the quartile.

-

The QUARTILE function syntax is:

-

QUARTILE(array , result-category)

-

where

-

array is the selected range of cells you want to analyse,

-

result-category is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following:

+

The QUARTILE function is one of the statistical functions. It is used to analyze the range of data and return the quartile.

+

Syntax

+

QUARTILE(array, quart)

+

The QUARTILE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells you want to analyse.
quartThe quartile value that you wish to return, a numeric value. The possible values are listed in the table below.
+ +

The quart argument can be one of the following:

- - + + - + - + - + - + - + - - +
Numeric valueQuartileNumeric valueQuartile
00 Smallest value in the range of data
11 First quartile (25th percentile)
22 Second quartile (50th percentile)
33 Third quartile (75th percentile)
44 Largest value in the data set
-

To apply the QUARTILE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the QUARTILE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

QUARTILE Function

+

Notes

+

How to apply the QUARTILE function.

+ +

Examples

+

The figure below displays the result returned by the QUARTILE function.

+

QUARTILE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm index 6b7a3a4d83..da21cd7daa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm @@ -15,24 +15,31 @@

QUOTIENT Function

-

The QUOTIENT function is one of the math and trigonometry functions. It is used to return the integer portion of a division.

-

The QUOTIENT function syntax is:

-

QUOTIENT(dividend, divisor)

-

where dividend and divisor are numeric values entered manually or included into the cells you make reference to.

-

To apply the QUOTIENT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the QUOTIENT function,
  8. -
  9. enter the required arguments separated by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

QUOTIENT Function

+

The QUOTIENT function is one of the math and trigonometry functions. It is used to return the integer portion of a division.

+

Syntax

+

QUOTIENT(numerator, denominator)

+

The QUOTIENT function has the following argument:

+ + + + + + + + + + + + + +
ArgumentDescription
numeratorThe dividend, a numeric value.
denominatorThe divisor, a numeric value.
+ +

Notes

+

How to apply the QUOTIENT function.

+ +

Examples

+

The figure below displays the result returned by the QUOTIENT function.

+

QUOTIENT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm index a61f46d22f..2b8c27b4ee 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm @@ -15,24 +15,26 @@

RADIANS Function

-

The RADIANS function is one of the math and trigonometry functions. It is used to convert degrees into radians.

-

The RADIANS function syntax is:

-

RADIANS(angle)

-

where angle is a numeric value (degrees) entered manually or included into the cell you make reference to.

-

To apply the RADIANS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the RADIANS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RADIANS Function

+

The RADIANS function is one of the math and trigonometry functions. It is used to convert degrees into radians.

+

Syntax

+

RADIANS(angle)

+

The RADIANS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
angleA numeric value (degrees).
+

Notes

+

How to apply the RADIANS function.

+ +

Examples

+

The figure below displays the result returned by the RADIANS function.

+

RADIANS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm index 81d92f343e..dad60f3091 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm @@ -15,22 +15,17 @@

RAND Function

-

The RAND function is one of the math and trigonometry functions. The function returns a random number greater than or equal to 0 and less than 1. It does not require any argument.

-

The RAND function syntax is:

-

RAND()

-

To apply the RAND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the RAND function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

RAND Function

+

The RAND function is one of the math and trigonometry functions. The function returns a random number greater than or equal to 0 and less than 1. It does not require any argument.

+

Syntax

+

RAND()

+

Notes

+

How to apply the RAND function.

+ +

Examples

+

The figure below displays the result returned by the RAND function.

+

RAND Function

+

To generate a random real number between a and b, use the following formula replacing a and b with your own values: =RAND()*(b-a)+a

+

RAND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/randarray.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/randarray.htm index d3ee7cc292..7bdf2ca3ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/randarray.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/randarray.htm @@ -15,30 +15,44 @@

RANDARRAY Function

-

The RANDARRAY function is one of the math and trigonometry functions. It is used to return an array of random numbers and can be configured to fill a certain number of rows and columns, set a range for values, or return whole/decimal numbers.

-

The RANDARRAY function syntax is:

-

RANDARRAY([rows],[columns],[min],[max],[whole_number])

-

where

-

rows is an optional argument indicating the number of rows to be returned. If the argument is not given, the function will return a value between 0 and 1.

-

columns is an optional argument indicating the number of columns to be returned. If the argument is not given, the function will return a value between 0 and 1.

-

min is an optional argument indicating the minimum number to be returned. If the argument is not given, the function will default to 0 and 1.

-

max is an optional argument indicating the maximum number to be returned. If the argument is not given, the function will default to 0 and 1.

-

whole_number is an optional TRUE or FALSE argument. If TRUE, the function will return a whole number; FALSE will return a decimal one.

-

To apply the RANDARRAY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the RANDARRAY function,
  8. -
  9. enter the arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RANDARRAY Function

+

The RANDARRAY function is one of the math and trigonometry functions. It is used to return an array of random numbers and can be configured to fill a certain number of rows and columns, set a range for values, or return whole/decimal numbers.

+

Syntax

+

RANDARRAY([rows], [columns], [min], [max], [whole_number])

+

The RANDARRAY function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rowsAn optional argument indicating the number of rows to be returned. If the argument is not given, the function will return a value between 0 and 1.
columnsAn optional argument indicating the number of columns to be returned. If the argument is not given, the function will return a value between 0 and 1.
minAn optional argument indicating the minimum number to be returned. If the argument is not given, the function will default to 0 and 1.
maxAn optional argument indicating the maximum number to be returned. If the argument is not given, the function will default to 0 and 1.
whole_numberAn optional TRUE or FALSE argument. If TRUE, the function will return a whole number; FALSE will return a decimal one.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the RANDARRAY function.

+ +

Examples

+

The figure below displays the result returned by the RANDARRAY function.

+

RANDARRAY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm index 902590085b..33a865a291 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm @@ -15,28 +15,31 @@

RANDBETWEEN Function

-

The RANDBETWEEN function is one of the math and trigonometry functions. The function returns a random number greater than or equal to lower-bound and less than or equal to upper-bound.

-

The RANDBETWEEN function syntax is:

-

RANDBETWEEN(lower-bound, upper-bound)

-

where

-

lower-bound is the smallest integer value.

-

upper-bound is the largest integer value.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

Note: if lower-bound is a greater than upper-bound, the function will return #NUM! error.

-

To apply the RANDBETWEEN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the RANDBETWEEN function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RANDBETWEEN Function

+

The RANDBETWEEN function is one of the math and trigonometry functions. The function returns a random number greater than or equal to lower-bound and less than or equal to upper-bound.

+

Syntax

+

RANDBETWEEN(bottom, top)

+

The RANDBETWEEN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
bottomThe smallest integer value.
topThe largest integer valuew.
+

Notes

+

If bottom is a greater than top, the function will return #NUM! error.

+

How to apply the RANDBETWEEN function.

+ +

Examples

+

The figure below displays the result returned by the RANDBETWEEN function.

+

RANDBETWEEN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm index 7bcf24a4bf..b81b78b1af 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm @@ -15,27 +15,35 @@

RANK.AVG Function

-

The RANK.AVG function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the average rank is returned.

-

The RANK.AVG function syntax is:

-

RANK.AVG(number, ref[, order])

-

where

-

number is the value you want to find the rank for.

-

ref is the selected range of cells containing the specified number.

-

order is the numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Аny other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order.

-

To apply the RANK.AVG function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the RANK.AVG function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RANK.AVG Function

+

The RANK.AVG function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the average rank is returned.

+

Syntax

+

RANK.AVG(number, ref, [order])

+

The RANK.AVG function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberThe value you want to find the rank for.
refThe selected range of cells containing the specified number.
orderThe numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Any other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order.
+ +

Notes

+

How to apply the RANK.AVG function.

+ +

Examples

+

The figure below displays the result returned by the RANK.AVG function.

+

RANK.AVG Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm index 9d29aefab8..449d81a204 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm @@ -15,27 +15,35 @@

RANK.EQ Function

-

The RANK.EQ function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the top rank of that set of values is returned.

-

The RANK.EQ function syntax is:

-

RANK.EQ(number, ref[, order])

-

where

-

number is the value you want to find the rank for.

-

ref is the selected range of cells containing the specified number.

-

order is the numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Аny other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order.

-

To apply the RANK.EQ function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the RANK.EQ function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RANK.EQ Function

+

The RANK.EQ function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position). If more than one value has the same rank, the top rank of that set of values is returned.

+

Syntax

+

RANK.EQ(number, ref, [order])

+

The RANK.EQ function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberThe value you want to find the rank for.
refThe selected range of cells containing the specified number.
orderThe numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Any other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order.
+ +

Notes

+

How to apply the RANK.EQ function.

+ +

Examples

+

The figure below displays the result returned by the RANK.EQ function.

+

RANK.EQ Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm index c141c971a9..2721f17444 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm @@ -15,27 +15,34 @@

RANK Function

-

The RANK function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position).

-

The RANK function syntax is:

-

RANK(number, ref[, order])

-

where

-

number is the value you want to find the rank for.

-

ref is the selected range of cells containing the specified number.

-

order is the numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Аny other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order.

-

To apply the RANK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the RANK function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RANK Function

+

The RANK function is one of the statistical functions. It is used to return the rank of a number in a list of numbers. The rank of a number is its size relative to other values in a list (if you were to sort the list, the rank of the number would be its position).

+

Syntax

+

RANK(number, ref, [order])

+

The RANK function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
numberThe value you want to find the rank for.
refThe selected range of cells containing the specified number.
orderThe numeric value that specifyes how to order the ref array. It is an optional argument. If it is 0 or omitted, the function ranks number as if ref were a list sorted in descending order. Any other numeric value is treated as the value 1 and the function ranks number as if ref were a list sorted in ascending order.
+

Notes

+

How to apply the RANK function.

+ +

Examples

+

The figure below displays the result returned by the RANK function.

+

RANK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm index 9557412fed..32e772da54 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm @@ -15,32 +15,47 @@

RATE Function

-

The RATE function is one of the financial functions. It is used to calculate the interest rate for an investment based on a constant payment schedule.

-

The RATE function syntax is:

-

RATE(nper, pmt, pv [, [[fv] [,[[type] [,[guess]]]]]])

-

where

-

nper is a number of payments.

-

pmt is a payment amount.

-

pv is a present value of the payments.

-

fv is a future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0.

-

type is a period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.

-

guess is an estimate at what the rate will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%.

-

Note: cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for guess and nper must be consistent: use N%/12 for guess and N*12 for nper in case of monthly payments, N%/4 for guess and N*4 for nper in case of quarterly payments, N% for guess and N for nper in case of annual payments.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the RATE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the RATE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RATE Function

+

The RATE function is one of the financial functions. It is used to calculate the interest rate for an investment based on a constant payment schedule.

+

Syntax

+

RATE(nper, pmt, pv, [fv], [type], [guess])

+

The RATE function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
nperThe number of payments.
pmtThe payment amount.
pvA present value of the payments.
fvA future value (i.e. a cash balance remaining after the last payment is made). It is an optional argument. If it is omitted, the function will assume fv to be 0.
typeA period when the payments are due. It is an optional argument. If it is set to 0 or omitted, the function will assume the payments to be due at the end of the period. If type is set to 1, the payments are due at the beginning of the period.
guessAn estimate at what the rate will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%.
+

Notes

+

Cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers. Units for guess and nper must be consistent: use N%/12 for guess and N*12 for nper in case of monthly payments, N%/4 for guess and N*4 for nper in case of quarterly payments, N% for guess and N for nper in case of annual payments.

+

How to apply the RATE function.

+ +

Examples

+

The figure below displays the result returned by the RATE function.

+

RATE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm index 6d8a6d145e..a5b494d03d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm @@ -15,57 +15,70 @@

RECEIVED Function

-

The RECEIVED function is one of the financial functions. It is used to calculate the amount received at maturity for a fully invested security.

-

The RECEIVED function syntax is:

-

RECEIVED(settlement, maturity, investment, discount[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

investment is the amount paid for the security.

-

discount is the security discount rate.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

- +

The RECEIVED function is one of the financial functions. It is used to calculate the amount received at maturity for a fully invested security.

+

Syntax

+

RECEIVED(settlement, maturity, investment, discount, [basis])

+

The RECEIVED function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
investmentThe amount paid for the security.
discountThe security discount rate.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the RECEIVED function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the RECEIVED function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RECEIVED Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the RECEIVED function.

+ +

Examples

+

The figure below displays the result returned by the RECEIVED function.

+

RECEIVED Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm index 457e969835..7ab567f077 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm @@ -15,32 +15,64 @@

REPLACE/REPLACEB Function

-

The REPLACE/REPLACEB function is one of the text and data functions. Is used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The REPLACE/REPLACEB function syntax is:

-

REPLACE(string-1, start-pos, number-chars, string-2)

-

REPLACEB(string-1, start-pos, number-chars, string-2)

-

where

-

string-1 is the original text to be replaced.

-

start-pos is the beginning of the set to be replaced.

-

number-chars is the number of characters to be replaced.

-

string-2 is the new text.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the REPLACE/REPLACEB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the REPLACE/REPLACEB function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the REPLACE function is case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

REPLACE Function

+

The REPLACE/REPLACEB function is one of the text and data functions. Is used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

REPLACE(old_text, start_num, num_chars, new_text)

+

The REPLACE function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
old_textThe original text to be replaced.
start_numThe beginning of the set to be replaced.
num_charsThe number of characters to be replaced.
new_textThe new text.
+ +

REPLACEB(old_text, start_num, num_bytes, new_text)

+

The REPLACEB function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
old_textThe original text to be replaced.
start_numThe beginning of the set to be replaced.
num_bytesThe number of characters to be replaced, based on bytes.
new_textThe new text.
+

Notes

+

The REPLACE function is case-sensitive.

+

How to apply the REPLACE/REPLACEB function.

+ +

Examples

+

The figure below displays the result returned by the REPLACE function.

+

REPLACE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/replaceb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/replaceb.htm index 349e289d06..78a4d27040 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/replaceb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/replaceb.htm @@ -15,32 +15,62 @@

REPLACE/REPLACEB Function

-

The REPLACE/REPLACEB function is one of the text and data functions. Is used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The REPLACE/REPLACEB function syntax is:

-

REPLACE(string-1, start-pos, number-chars, string-2)

-

REPLACEB(string-1, start-pos, number-chars, string-2)

-

where

-

string-1 is the original text to be replaced.

-

start-pos is the beginning of the set to be replaced.

-

number-chars is the number of characters to be replaced.

-

string-2 is the new text.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the REPLACE/REPLACEB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the REPLACE/REPLACEB function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the REPLACE function is case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

REPLACE Function

+

The REPLACE/REPLACEB function is one of the text and data functions. Is used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters. The REPLACE function is intended for languages that use the single-byte character set (SBCS), while REPLACEB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

REPLACE(old_text, start_num, num_chars, new_text)

+

The REPLACE function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
old_textThe original text to be replaced.
start_numThe beginning of the set to be replaced.
num_charsThe number of characters to be replaced.
new_textThe new text.
+ +

REPLACEB(old_text, start_num, num_bytes, new_text)

+

The REPLACEB function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
old_textThe original text to be replaced.
start_numThe beginning of the set to be replaced.
num_bytesThe number of characters to be replaced, based on bytes.
new_textThe new text.
+

Notes

+

The REPLACE function is case-sensitive.

+

Examples

+

The figure below displays the result returned by the REPLACE function.

+

REPLACE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm index 00a4d89226..2e8df7c0f8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm @@ -15,28 +15,30 @@

REPT Function

-

The REPT function is one of the text and data functions. Is used to repeat the data in the selected cell as many time as you wish.

-

The REPT function syntax is:

-

REPT(text, number_of_times)

-

where

-

text is data to be repeated.

-

number_of_times is a number of times you wish to repeat the data you entered.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the REPT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the REPT function,
  8. -
  9. enter the required arguments separating them by comma, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

REPT Function

+

The REPT function is one of the text and data functions. Is used to repeat the data in the selected cell as many time as you wish.

+

Syntax

+

REPT(text, number_time)

+

The REPT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textThe data to be repeated.
number_timeA number of times you wish to repeat the data you entered.
+

Notes

+

How to apply the REPT function.

+ +

Examples

+

The figure below displays the result returned by the REPT function.

+

REPT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm index 2adce4bf0f..c0bc4b5d6a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm @@ -15,28 +15,48 @@

RIGHT/RIGHTB Function

-

The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The RIGHT/RIGHTB function syntax is:

-

RIGHT(string [, number-chars])

-

RIGHTB(string [, number-chars])

-

where

-

string is a string you need to extract the substring from,

-

number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the funcion will assume it to be 1.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the RIGHT/RIGHTB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the RIGHT/RIGHTB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RIGHT Function

+

The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

RIGHT(text, [num_chars])

+

The RIGHT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_charsA number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1.
+ +

RIGHTB(text, [num_bytes])

+

The RIGHTB function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_bytesA number of the substring characters, based on bytes. It is an optional argument.
+ +

Notes

+

How to apply the RIGHT/RIGHTB function.

+ +

Examples

+

The figure below displays the result returned by the RIGHT function.

+

RIGHT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rightb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rightb.htm index 341e9e092e..610713086f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rightb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rightb.htm @@ -15,28 +15,47 @@

RIGHT/RIGHTB Function

-

The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The RIGHT/RIGHTB function syntax is:

-

RIGHT(string [, number-chars])

-

RIGHTB(string [, number-chars])

-

where

-

string is a string you need to extract the substring from,

-

number-chars is a number of the substring characters. It is an optional argument. If it is omitted, the funcion will assume it to be 1.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the RIGHT/RIGHTB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the RIGHT/RIGHTB function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RIGHTB Function

+

The RIGHT/RIGHTB function is one of the text and data functions. Is used to extract a substring from a string starting from the right-most character, based on the specified number of characters. The RIGHT function is intended for languages that use the single-byte character set (SBCS), while RIGHTB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

RIGHT(text, [num_chars])

+

The RIGHT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_charsA number of the substring characters. It must be greater than or equal to 0. It is an optional argument. If it is omitted, the function will assume it to be 1.
+ +

RIGHTB(text, [num_bytes])

+

The RIGHTB function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
textA string you need to extract the substring from.
num_bytesA number of the substring characters, based on bytes. It is an optional argument.
+

Notes

+

How to apply the RIGHT/RIGHTB function.

+ +

Examples

+

The figure below displays the result returned by the RIGHT function.

+

RIGHTB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm index 94925860e7..935bec2fec 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm @@ -15,60 +15,65 @@

ROMAN Function

-

The ROMAN function is one of the math and trigonometry functions. The function is used to convert a number to a roman numeral.

-

The ROMAN function syntax is:

-

ROMAN(number, [form])

-

where

-

number is a numeric value greater than or equal to 1 and less than 3999 entered manually or included into the cell you make reference to.

-

form is a roman numeral type that can be one of the following:

+

The ROMAN function is one of the math and trigonometry functions. The function is used to convert a number to a roman numeral.

+

Syntax

+

ROMAN(number, [form])

+

The ROMAN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA numeric value greater than or equal to 1 and less than 3999.
formA roman numeral type. It is an optional argument. The possible values are listed in the table below.
+

The form argument can be one of the following:

- - + + - + - + - + - + - + - + - +
ValueTypeValueType
00 Classic
11 More concise
22 More concise
33 More concise
44 Simplified
TRUETRUE Classic
FALSEFALSE Simplified
-

To apply the ROMAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ROMAN function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ROMAN Function

+

Notes

+

How to apply the ROMAN function.

+ +

Examples

+

The figure below displays the result returned by the ROMAN function.

+

ROMAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm index 3cd28efa72..43511c904b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm @@ -15,27 +15,30 @@

ROUND Function

-

The ROUND function is one of the math and trigonometry functions. It is used to round the number to the desired number of digits.

-

The ROUND function syntax is:

-

ROUND(x, num_digits)

-

where

-

x is the number you wish to round.

-

num_digits is the number of digits you wish to round to.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the ROUND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ROUND function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ROUND Function

+

The ROUND function is one of the math and trigonometry functions. It is used to round the number to the desired number of digits.

+

Syntax

+

ROUND(number, num_digits)

+

The ROUND function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round.
num_digitsThe number of digits you wish to round to.
+

Notes

+

How to apply the ROUND function.

+ +

Examples

+

The figure below displays the result returned by the ROUND function.

+

ROUND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm index 40067fdd67..ac46f2be73 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm @@ -15,27 +15,30 @@

ROUNDDOWN Function

-

The ROUNDDOWN function is one of the math and trigonometry functions. It is used to round the number down to the desired number of digits.

-

The ROUNDDOWN function syntax is:

-

ROUNDDOWN(x, num_digits)

-

where

-

x is the number you wish to round down.

-

num_digits is the number of digits you wish to round down to.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the ROUNDDOWN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ROUNDDOWN function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ROUNDDOWN Function

+

The ROUNDDOWN function is one of the math and trigonometry functions. It is used to round the number down to the desired number of digits.

+

Syntax

+

ROUNDDOWN(number, num_digits)

+

The ROUNDDOWN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round down.
num_digitsThe number of digits you wish to round down to.
+

Notes

+

How to apply the ROUNDDOWN function.

+ +

Examples

+

The figure below displays the result returned by the ROUNDDOWN function.

+

ROUNDDOWN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm index 1a1e5bbe46..d4d885dd24 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm @@ -15,27 +15,30 @@

ROUNDUP Function

-

The ROUNDUP function is one of the math and trigonometry functions. It is used to round the number up to the desired number of digits.

-

The ROUNDUP function syntax is:

-

ROUNDUP(x, num_digits)

-

where

-

x is the number you wish to round up.

-

num_digits is the number of digits you wish to round up to.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the ROUNDUP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the ROUNDUP function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ROUNDUP Function

+

The ROUNDUP function is one of the math and trigonometry functions. It is used to round the number up to the desired number of digits.

+

Syntax

+

ROUNDUP(number, num_digits)

+

The ROUNDUP function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberThe number you wish to round up.
num_digitsThe number of digits you wish to round up to.
+

Notes

+

How to apply the ROUNDUP function.

+ +

Examples

+

The figure below displays the result returned by the ROUNDUP function.

+

ROUNDUP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm index 3e221e501e..2be54aeda1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm @@ -15,25 +15,28 @@

ROW Function

-

The ROW function is one of the lookup and reference functions. It is used to return the row number of a cell reference.

-

The ROW function syntax is:

-

ROW([reference])

-

where reference is a reference to a cell.

-

Note: reference is an optional argument. If the it is omitted, the function will return the row number of a cell in which the ROW function is entered.

-

To apply the ROW function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the ROW function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ROW Function

+

The ROW function is one of the lookup and reference functions. It is used to return the row number of a cell reference.

+

Syntax

+

ROW([reference])

+

The ROW function has the following argument:

+ + + + + + + + + +
ArgumentDescription
referenceA reference to a cell.
+

Notes

+

reference is an optional argument. If the it is omitted, the function will return the row number of a cell in which the ROW function is entered.

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the ROW function.

+ +

Examples

+

The figure below displays the result returned by the ROW function.

+

ROW Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm index 0a0fcabf1e..b44035e24c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm @@ -15,24 +15,26 @@

ROWS Function

-

The ROWS function is one of the lookup and reference functions. It is used to return the number of rows in a cell reference.

-

The ROWS function syntax is:

-

ROWS(array)

-

where array is a reference to a range of cells.

-

To apply the ROWS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the ROWS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ROWS Function

+

The ROWS function is one of the lookup and reference functions. It is used to return the number of rows in a cell reference.

+

Syntax

+

ROWS(array)

+

The ROWS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
arrayA reference to a range of cells.
+

Notes

+

How to apply the ROWS function.

+ +

Examples

+

The figure below displays the result returned by the ROWS function.

+

ROWS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm index 623a030e2f..0a9e454121 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm @@ -15,28 +15,34 @@

RRI Function

-

The RRI function is one of the financial functions. It is used to return an equivalent interest rate for the growth of an investment.

-

The RRI function syntax is:

-

RRI(nper, pv, fv)

-

where

-

nper is a number of periods for the investment.

-

pv is a present value of the investment.

-

fv is a future value of the investment.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the RRI function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the RRI function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RRI Function

+

The RRI function is one of the financial functions. It is used to return an equivalent interest rate for the growth of an investment.

+

Syntax

+

RRI(nper, pv, fv)

+

The RRI function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
nperA number of periods for the investment.
pvA present value of the investment.
fvA future value of the investment.
+

Notes

+

How to apply the RRI function.

+ +

Examples

+

The figure below displays the result returned by the RRI function.

+

RRI Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm index 73471a1c55..df81e7f960 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm @@ -15,25 +15,31 @@

RSQ Function

-

The RSQ function is one of the statistical functions. It is used to return the square of the Pearson product moment correlation coefficient.

-

The RSQ function syntax is:

-

RSQ(array-1 , array-2)

-

where array-1 and array-2 are the selected ranges of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the RSQ function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the RSQ function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

RSQ Function

+

The RSQ function is one of the statistical functions. It is used to return the square of the Pearson product moment correlation coefficient.

+

Syntax

+

RSQ(known_y's, known_x's)

+

The RSQ function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
known_y'sThe dependent data range.
known_x'sThe independent data range with the same number of elements as known_y's contains.
+

Notes

+

If known_y's or known_x's contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the RSQ function.

+ +

Examples

+

The figure below displays the result returned by the RSQ function.

+

RSQ Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm index 872352e5ef..5e485f18a7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm @@ -15,32 +15,37 @@

SEARCH/SEARCHB Function

-

The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The SEARCH/SEARCHB function syntax is:

-

SEARCH(string-1, string-2 [,start-pos])

-

SEARCHB(string-1, string-2 [,start-pos])

-

where

-

string-1 is the substring to find.

-

string-2 is the string to search within.

-

start-pos is the position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of string-2.

-

The data can be entered manually or included into the cells you make reference to.

-

Note: if the function does not find the matches, it will return a #VALUE! error.

-

To apply the SEARCH/SEARCHB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the SEARCH/SEARCHB function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the SEARCH/SEARCHB function is NOT case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SEARCH Function

+

The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

SEARCH(find_text, within_text, start_num)

+

SEARCHB(find_text, within_text, start_num)

+

The SEARCH/SEARCHB function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
find_textThe substring to find.
within_textThe string to search within.
start_numThe position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of within_text.
+

Notes

+

The SEARCH/SEARCHB function is NOT case-sensitive.

+

If the function does not find the matches, it will return a #VALUE! error.

+

How to apply the SEARCH/SEARCHB function.

+ +

Examples

+

The figure below displays the result returned by the SEARCH function.

+

SEARCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/searchb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/searchb.htm index beab62f8f8..5d2db2a27a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/searchb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/searchb.htm @@ -15,32 +15,37 @@

SEARCH/SEARCHB Function

-

The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

-

The SEARCH/SEARCHB function syntax is:

-

SEARCH(string-1, string-2 [,start-pos])

-

SEARCHB(string-1, string-2 [,start-pos])

-

where

-

string-1 is the substring to find.

-

string-2 is the string to search within.

-

start-pos is the position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of string-2.

-

The data can be entered manually or included into the cells you make reference to.

-

Note: if the function does not find the matches, it will return a #VALUE! error.

-

To apply the SEARCH/SEARCHB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the SEARCH/SEARCHB function,
  8. -
  9. enter the required arguments separating them by comma, -

    Note: the SEARCH/SEARCHB function is NOT case-sensitive.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SEARCH Function

+

The SEARCH/SEARCHB function is one of the text and data functions. Is used to return the location of the specified substring in a string. The SEARCH function is intended for languages that use the single-byte character set (SBCS), while SEARCHB - for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc.

+

Syntax

+

SEARCH(find_text, within_text, start_num)

+

SEARCHB(find_text, within_text, start_num)

+

The SEARCH/SEARCHB function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
find_textThe substring to find.
within_textThe string to search within.
start_numThe position to start searching from. It is an optional argument. If it is omitted, the function will perform the search from the beginning of within_text.
+

Notes

+

The SEARCH/SEARCHB function is NOT case-sensitive.

+

If the function does not find the matches, it will return a #VALUE! error.

+

How to apply the SEARCH/SEARCHB function.

+ +

Examples

+

The figure below displays the result returned by the SEARCH function.

+

SEARCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm index e54eb7af4a..9656f6b102 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm @@ -15,24 +15,26 @@

SEC Function

-

The SEC function is one of the math and trigonometry functions. It is used to return the secant of an angle specified in radians.

-

The SEC function syntax is:

-

SEC(x)

-

where x is the angle in radians that you wish to calculate the secant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.

-

To apply the SEC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SEC function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SEC Function

+

The SEC function is one of the math and trigonometry functions. It is used to return the secant of an angle specified in radians.

+

Syntax

+

SEC(number)

+

The SEC function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the secant of. Its absolute value must be less than 2^27.
+

Notes

+

How to apply the SEC function.

+ +

Examples

+

The figure below displays the result returned by the SEC function.

+

SEC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm index c1b4f83878..6575018818 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm @@ -15,24 +15,26 @@

SECH Function

-

The SECH function is one of the math and trigonometry functions. It is used to return the hyperbolic secant of an angle specified in radians.

-

The SECH function syntax is:

-

SECH(x)

-

where x is the angle in radians that you wish to calculate the hyperbolic secant of. A numeric value entered manually or included into the cell you make reference to. Its absolute value must be less than 2^27.

-

To apply the SECH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SECH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SECH Function

+

The SECH function is one of the math and trigonometry functions. It is used to return the hyperbolic secant of an angle specified in radians.

+

Syntax

+

SECH(number)

+

The SECH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the hyperbolic secant of. Its absolute value must be less than 2^27.
+

Notes

+

How to apply the SECH function.

+ +

Examples

+

The figure below displays the result returned by the SECH function.

+

SECH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm index c504daa333..08b0550e46 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm @@ -15,25 +15,27 @@

SECOND Function

-

The SECOND function is one of the date and time functions. It returns the second (a number from 0 to 59) of the time value.

-

The SECOND function syntax is:

-

SECOND( time-value )

-

where time-value is a value entered manually or included into the cell you make reference to.

-

Note: the time-value may be expressed as a string value (e.g. "13:39:15"), a decimal number (e.g. 0.56 corresponds to 13:26:24) , or the result of a formula (e.g. the result of the NOW function - 9/26/12 13:39)

-

To apply the SECOND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the SECOND function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SECOND Function

+

The SECOND function is one of the date and time functions. It returns the second (a number from 0 to 59) of the time value.

+

Syntax

+

SECOND(serial_number)

+

The SECOND function has the following argument:

+ + + + + + + + + +
ArgumentDescription
serial_numberThe time that contains the second you want to find.
+

Notes

+

The serial_number may be expressed as a string value (e.g. "13:39:15"), a decimal number (e.g. 0.56 corresponds to 13:26:24) , or the result of a formula (e.g. the result of the NOW function - 9/26/12 13:39)

+

How to apply the SECOND function.

+ +

Examples

+

The figure below displays the result returned by the SECOND function.

+

SECOND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sequence.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sequence.htm index c6de85320d..368ac71b36 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sequence.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sequence.htm @@ -15,30 +15,39 @@

SEQUENCE Function

-

The SEQUENCE function is one of the math and trigonometry functions. It is used to generate an array of sequential numbers.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The SEQUENCE function syntax is:

-

SEQUENCE(rows,[columns],[start],[step])

-

where

-

rows is used to set the number of rows to return.

-

columns is used to set the number of columns to return.

-

start is used to set the first number in the sequence.

-

step is used to control the increment for each subsequent value in the array.

-

To apply the SEQUENCE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SEQUENCE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SEQUENCE Function

+

The SEQUENCE function is one of the math and trigonometry functions. It is used to generate an array of sequential numbers.

+

Syntax

+

SEQUENCE(rows, [columns], [start], [step])

+

The SEQUENCE function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
rowsIs used to set the number of rows to return.
columnsIs used to set the number of columns to return.
startIs used to set the first number in the sequence.
stepIs used to control the increment for each subsequent value in the array.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the SEQUENCE function.

+ +

Examples

+

The figure below displays the result returned by the SEQUENCE function.

+

SEQUENCE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm index 4d6bdf2bbc..386ccfefb6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm @@ -15,31 +15,38 @@

SERIESSUM Function

-

The SERIESSUM function is one of the math and trigonometry functions. It is used to return the sum of a power series.

-

The SERIESSUM function syntax is:

-

SERIESSUM(input-value, intial-power, step, coefficients)

-

where

-

input-value is the input value to the power series.

-

intial-power is the initial power to which you want to raise input-value.

-

step is the step by which you want to increase intial-power for each term in the series.

-

coefficients are coefficients by which each successive power of input-value is multiplied. The number of coefficients determines the number of terms in the power series.

-

The numeric values can be entered manually or included into the cell you make reference to.

+

The SERIESSUM function is one of the math and trigonometry functions. It is used to return the sum of a power series.

+

Syntax

+

SERIESSUM(x, n, m, coefficients)

+

The SERIESSUM function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe input value to the power series.
nThe initial power to which you want to raise x.
mThe step by which you want to increase n for each term in the series.
coefficientsCoefficients by which each successive power of x is multiplied. The number of coefficients determines the number of terms in the power series.
+

Notes

+

How to apply the SERIESSUM function.

- -

To apply the SERIESSUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SERIESSUM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SERIESSUM Function

+

Examples

+

The figure below displays the result returned by the SERIESSUM function.

+

SERIESSUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm index 3a1be31a04..ba5ba34cee 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm @@ -15,24 +15,26 @@

SHEET Function

-

The SHEET function is one of the information functions. It is used to return the sheet number of the reference sheet.

-

The SHEET function syntax is:

-

SHEET(value)

-

where value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, the current sheet number is returned.

-

To apply the SHEET function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the SHEET function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SHEET Function

+

The SHEET function is one of the information functions. It is used to return the sheet number of the reference sheet.

+

Syntax

+

SHEET([value])

+

The SHEET function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe name of a sheet or a reference for which you want the sheet number. It is an optional argument. If value is omitted, the current sheet number is returned.
+

Notes

+

How to apply the SHEET function.

+ +

Examples

+

The figure below displays the result returned by the SHEET function.

+

SHEET Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm index 757bf10938..45c3decd3d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm @@ -15,24 +15,26 @@

SHEETS Function

-

The SHEETS function is one of the information functions. It is used to return the number of sheets in a reference.

-

The SHEETS function syntax is:

-

SHEETS(reference)

-

where reference is a reference for which you want to find out the number of sheets it contains. If reference is omitted, the number of sheets in the current workbook is returned.

-

To apply the SHEETS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the SHEETS function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SHEETS Function

+

The SHEETS function is one of the information functions. It is used to return the number of sheets in a reference.

+

Syntax

+

SHEETS([reference])

+

The SHEETS function has the following argument:

+ + + + + + + + + +
ArgumentDescription
referenceA reference for which you want to find out the number of sheets it contains. It is an optional argument. If reference is omitted, the number of sheets in the current workbook is returned.
+

Notes

+

How to apply the SHEETS function.

+ +

Examples

+

The figure below displays the result returned by the SHEETS function.

+

SHEETS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm index 8fc5a516a4..0547549314 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm @@ -15,28 +15,28 @@

SIGN Function

-

The SIGN function is one of the math and trigonometry functions. It is used to return the sign of a number. If the number is positive, the function returns 1. If the number is negative, the function returns -1. If the number is 0, the function returns 0.

-

The SIGN function syntax is:

-

SIGN(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the SIGN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SIGN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

The required argument is A1, where A1 is 12. The number is positive, so the function returns 1.

-

SIGN Function: POSITIVE

+

The SIGN function is one of the math and trigonometry functions. It is used to return the sign of a number. If the number is positive, the function returns 1. If the number is negative, the function returns -1. If the number is 0, the function returns 0.

+

Syntax

+

SIGN(number)

+

The SIGN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the sign.
+

Notes

+

How to apply the SIGN function.

+ +

Examples

+

The required argument is A1, where A1 is 12. The number is positive, so the function returns 1.

+

SIGN Function: POSITIVE

If we change the A1 value from 12 to -12, the function returns -1:

-

SIGN Function: NEGATIVE

+

SIGN Function: NEGATIVE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm index 03ffd640c4..5ebc7f4707 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm @@ -15,24 +15,26 @@

SIN Function

-

The SIN function is one of the math and trigonometry functions. It is used to return the sine of an angle.

-

The SIN function syntax is:

-

SIN(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the SIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SIN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SIN Function

+

The SIN function is one of the math and trigonometry functions. It is used to return the sine of an angle.

+

Syntax

+

SIN(number)

+

The SIN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the sine.
+

Notes

+

How to apply the SIN function.

+ +

Examples

+

The figure below displays the result returned by the SIN function.

+

SIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm index e8145c6885..352430f20c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm @@ -15,24 +15,26 @@

SINH Function

-

The SINH function is one of the math and trigonometry functions. It is used to return the hyperbolic sine of a number.

-

The SINH function syntax is:

-

SINH(x)

-

where x is any numeric value entered manually or included into the cell you make reference to.

-

To apply the SINH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SINH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SINH Function

+

The SINH function is one of the math and trigonometry functions. It is used to return the hyperbolic sine of a number.

+

Syntax

+

SINH(number)

+

The SINH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the hyperbolic sine.
+

Notes

+

How to apply the SINH function.

+ +

Examples

+

The figure below displays the result returned by the SINH function.

+

SINH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm index 65acceb999..1cc81221ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm @@ -15,25 +15,27 @@

SKEW.P Function

-

The SKEW.P function is one of the statistical functions. It is used to return the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean.

-

The SKEW.P function syntax is:

-

SKEW.P(number-1 [, number 2], ...)

-

where number-1(2) is up to 254 numeric values entered manually or included into the cells you make reference to.

-

Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the SKEW.P function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the SKEW.P function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SKEW.P Function

+

The SKEW.P function is one of the statistical functions. It is used to return the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean.

+

Syntax

+

SKEW.P(number1, [number2], ...)

+

The SKEW.P function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to get the skewness of a distribution.
+

Notes

+

If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the SKEW.P function.

+ +

Examples

+

The figure below displays the result returned by the SKEW.P function.

+

SKEW.P Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm index 96ebd76bda..2f217a8afd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm @@ -15,24 +15,26 @@

SKEW Function

-

The SKEW function is one of the statistical functions. It is used to analyze the range of data and return the skewness of a distribution of the argument list.

-

The SKEW function syntax is:

-

SKEW(argument-list)

-

where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to.

-

To apply the SKEW function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the SKEW function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SKEW Function

+

The SKEW function is one of the statistical functions. It is used to analyze the range of data and return the skewness of a distribution of the argument list.

+

Syntax

+

SKEW(number1, [number2], ...)

+

The SKEW function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to get the skewness of a distribution.
+

Notes

+

How to apply the SKEW function.

+ +

Examples

+

The figure below displays the result returned by the SKEW function.

+

SKEW Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm index f78322c656..3313a9c4a1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm @@ -15,28 +15,34 @@

SLN Function

-

The SLN function is one of the financial functions. It is used to calculate the depreciation of an asset for one accounting period using the straight-line depreciation method.

-

The SLN function syntax is:

-

SLN(cost, salvage, life)

-

where

-

cost is the cost of the asset.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

life is the total number of the periods within the asset lifetime.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the SLN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the SLN function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SLN Function

+

The SLN function is one of the financial functions. It is used to calculate the depreciation of an asset for one accounting period using the straight-line depreciation method.

+

Syntax

+

SLN(cost, salvage, life)

+

The SLN function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
costThe cost of the asset.
salvageThe salvage value of the asset at the end of its lifetime.
lifeThe total number of the periods within the asset lifetime.
+

Notes

+

How to apply the SLN function.

+ +

Examples

+

The figure below displays the result returned by the SLN function.

+

SLN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm index fb742a8ca5..e055ad6d71 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm @@ -15,25 +15,31 @@

SLOPE Function

-

The SLOPE function is one of the statistical functions. It is used to return the slope of the linear regression line through data in two arrays.

-

The SLOPE function syntax is:

-

SLOPE(array-1 , array-2)

-

where array-1 and array-2 are the selected ranges of cells with the same number of elements.

-

Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the SLOPE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the SLOPE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SLOPE Function

+

The SLOPE function is one of the statistical functions. It is used to return the slope of the linear regression line through data in two arrays.

+

Syntax

+

SLOPE(known_y's, known_x's)

+

The SLOPE function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
known_y'sThe dependent data range.
known_x'sThe independent data range with the same number of elements as known_y's contains.
+

Notes

+

If known_y's or known_x's contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the SLOPE function.

+ +

Examples

+

The figure below displays the result returned by the SLOPE function.

+

SLOPE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm index b51496884e..ac38b8eb3a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm @@ -15,26 +15,31 @@

SMALL Function

-

The SMALL function is one of the statistical functions. It is used to analyze the range of data and find the k-th smallest value.

-

The SMALL function syntax is:

-

SMALL(array , k)

-

where

-

array is the selected range of cells.

-

k is the position of the number from the smallest value, a numeric value entered manually or included into the cell you make reference to.

-

To apply the SMALL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the SMALL function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SMALL Function

+

The SMALL function is one of the statistical functions. It is used to analyze the range of data and find the k-th smallest value.

+

Syntax

+

SMALL(array , k)

+

The SMALL function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe selected range of cells you want to analyze.
kThe position of the number from the smallest value, a numeric value greater than 0.
+ +

Notes

+

How to apply the SMALL function.

+ +

Examples

+

The figure below displays the result returned by the SMALL function.

+

SMALL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sort.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sort.htm index 4a1a9502e3..13f3fa8261 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sort.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sort.htm @@ -15,42 +15,50 @@

SORT Function

-

The SORT function is a lookup and reference function. It is used to sort a range of data or an array and to return the sorted array.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The SORT function syntax is:

-

=SORT(array,[sort_index],[sort_order],[by_col])

-

where

-

array is the range of data to sort.

-

[sort_index] is an optional argument. A number identifying the column or the row to sort by.

-

- [sort_order] is an optional argument. A number determining the sorting order: -

-

-

- [by_col] is an optional argument. A value indicating the sorting direction: -

-

-

To apply the SORT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the SORT function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SORT Function

+

The SORT function is one of the lookup and reference functions. It is used to sort a range of data or an array and to return the sorted array.

+

Syntax

+

SORT(array, [sort_index], [sort_order], [by_col])

+

The SORT function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of data to sort.
sort_indexAn optional argument. A number identifying the column or the row to sort by.
sort_orderAn optional argument. A number determining the sorting order: +
    +
  • 1 or omitted for ascending order (by default),
  • +
  • -1 for descending order.
  • +
+
by_colAn optional argument. A value indicating the sorting direction: +
    +
  • FALSE or omitted for sorting by rows when your data is organized vertically.
  • +
  • TRUE for sorting by columns when your data is organized horizontally.
  • +
+
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the SORT function.

+ +

Examples

+

The figure below displays the result returned by the SORT function.

+

SORT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sortby.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sortby.htm index a29ec245d2..46d63df7fb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sortby.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sortby.htm @@ -44,11 +44,11 @@ Meaning - 1 or omitted + 1 or omitted Ascending order (by default) - -1 + -1 Descending order diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm index 6a523e6ddf..1dd8b38b1b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm @@ -15,25 +15,27 @@

SQRT Function

-

The SQRT function is one of the math and trigonometry functions. It is used to return the square root of a number.

-

The SQRT function syntax is:

-

SQRT(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

Note: if the x value is negative, the function returns the #NUM! error.

-

To apply the SQRT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SQRT function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

+

The SQRT function is one of the math and trigonometry functions. It is used to return the square root of a number.

+

Syntax

+

SQRT(number)

+

The SQRT function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the square root.
+

Notes

+

If the number value is negative, the function returns the #NUM! error.

+

How to apply the SQRT function.

+ +

Examples

+

The figure below displays the result returned by the SQRT function.

+

SQRT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm index fb91b15159..16ecae3fbe 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm @@ -15,25 +15,27 @@

SQRTPI Function

-

The SQRTPI function is one of the math and trigonometry functions. It is used to return the square root of the pi constant (3.14159265358979) multiplied by the specified number.

-

The SQRTPI function syntax is:

-

SQRTPI(x)

-

where x is the number you wish to multiply the pi constant by, a numeric value entered manually or included into the cell you make reference to.

-

Note: if the x value is negative, the function returns the #NUM! error.

-

To apply the SQRTPI function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SQRTPI function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SQRTPI Function

+

The SQRTPI function is one of the math and trigonometry functions. It is used to return the square root of the pi constant (3.14159265358979) multiplied by the specified number.

+

Syntax

+

SQRTPI(number)

+

The SQRTPI function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe number you wish to multiply the pi constant by.
+

Notes

+

If the number value is negative, the function returns the #NUM! error.

+

How to apply the SQRTPI function.

+ +

Examples

+

The figure below displays the result returned by the SQRTPI function.

+

SQRTPI Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm index fbf192a588..eebe02c8b9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm @@ -15,28 +15,34 @@

STANDARDIZE Function

-

The STANDARDIZE function is one of the statistical functions. It is used to return a normalized value from a distribution characterized by the specified parameters.

-

The STANDARDIZE function syntax is:

-

STANDARDIZE(x, mean, standard-deviation)

-

where

-

x is the value you want to normalize.

-

mean is the arithmetic mean of the distribution.

-

standard-deviation is the standard deviation of the distribution, greater than 0.

-

The numeric values can be entered manually or included into the cells you make reference to.

-

To apply the STANDARDIZE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STANDARDIZE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STANDARDIZE Function

+

The STANDARDIZE function is one of the statistical functions. It is used to return a normalized value from a distribution characterized by the specified parameters.

+

Syntax

+

STANDARDIZE(x, mean, standard_dev)

+

The STANDARDIZE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value you want to normalize.
meanThe arithmetic mean of the distribution.
standard_devThe standard deviation of the distribution, greater than 0.
+

Notes

+

How to apply the STANDARDIZE function.

+ +

Examples

+

The figure below displays the result returned by the STANDARDIZE function.

+

STANDARDIZE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm index 99a3491068..ec0439aecd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm @@ -15,25 +15,27 @@

STDEV.P Function

-

The STDEV.P function is one of the statistical functions. It is used to calculate standard deviation based on the entire population given as arguments (ignores logical values and text).

-

The STDEV.P function syntax is:

-

STDEV.P(number1 [, number2], ...)

-

where number-1(2) is up to 254 numeric values entered manually or included into the cells you make reference to.

-

Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the STDEV.P function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STDEV.P function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STDEV.P Function

+

The STDEV.P function is one of the statistical functions. It is used to calculate standard deviation based on the entire population given as arguments (ignores logical values and text).

+

Syntax

+

STDEV.P(number1, [number2], ...)

+

The STDEV.P function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the standard deviation.
+

Notes

+

If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the STDEV.P function.

+ +

Examples

+

The figure below displays the result returned by the STDEV.P function.

+

STDEV.P Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm index 81e6e0dc02..2c516f4daa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm @@ -15,25 +15,27 @@

STDEV.S Function

-

The STDEV.S function is one of the statistical functions. It is used to estimate standard deviation based on a sample (ignores logical values and text in the sample).

-

The STDEV.S function syntax is:

-

STDEV.S(number1 [, number2], ...)

-

where number-1(2) is up to 255 numeric values entered manually or included into the cells you make reference to.

-

Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the STDEV.S function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STDEV.S function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STDEV.S Function

+

The STDEV.S function is one of the statistical functions. It is used to estimate standard deviation based on a sample (ignores logical values and text in the sample).

+

Syntax

+

STDEV.S(number1, [number2], ...)

+

The STDEV.S function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the standard deviation.
+

Notes

+

If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the STDEV.S function.

+ +

Examples

+

The figure below displays the result returned by the STDEV.S function.

+

STDEV.S Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm index 9ceac66a1d..612a24c1e6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm @@ -15,25 +15,27 @@

STDEV Function

-

The STDEV function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers.

-

The STDEV function syntax is:

-

STDEV(argument-list)

-

where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to.

-

Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

-

To apply the STDEV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STDEV function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STDEV Function

+

The STDEV function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers.

+

Syntax

+

STDEV(number1, [number2], ...)

+

The STDEV function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the standard deviation.
+

Notes

+

If a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

+

How to apply the STDEV function.

+ +

Examples

+

The figure below displays the result returned by the STDEV function.

+

STDEV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm index 4d1d4cedf7..2659517fc2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm @@ -15,24 +15,26 @@

STDEVA Function

-

The STDEVA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers, text, and logical values (TRUE or FALSE). The STDEVA function treats text and FALSE as a value of 0 and TRUE as a value of 1.

-

The STDEVA function syntax is:

-

STDEVA(argument-list)

-

where argument-list is up to 255 values entered manually or included into the cells you make reference to.

-

To apply the STDEVA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STDEVA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STDEVA Function

+

The STDEVA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers, text, and logical values (TRUE or FALSE). The STDEVA function treats text and FALSE as a value of 0 and TRUE as a value of 1.

+

Syntax

+

STDEVA(value1, [value2], ...)

+

The STDEVA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values for which you want to calculate the standard deviation.
+

Notes

+

How to apply the STDEVA function.

+ +

Examples

+

The figure below displays the result returned by the STDEVA function.

+

STDEVA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm index 38f83b8e87..5c4eede10c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm @@ -15,24 +15,26 @@

STDEVP Function

-

The STDEVP function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population.

-

The STDEVP function syntax is:

-

STDEVP(argument-list)

-

where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to.

-

To apply the STDEVP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STDEVP function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STDEVP Function

+

The STDEVP function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population.

+

Syntax

+

STDEVP(number1, [number2], ...)

+

The STDEVP function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the standard deviation.
+

Notes

+

How to apply the STDEVP function.

+ +

Examples

+

The figure below displays the result returned by the STDEVP function.

+

STDEVP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm index 8da73ea9db..9e2a5e6ce5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm @@ -15,25 +15,27 @@

STDEVPA Function

-

The STDEVPA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population.

-

The STDEVPA function syntax is:

-

STDEVPA(argument-list)

-

where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to.

-

Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

-

To apply the STDEVPA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STDEVPA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STDEVPA Function

+

The STDEVPA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population.

+

Syntax

+

STDEVPA(value1, [value2], ...)

+

The STDEVPA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values for which you want to calculate the standard deviation.
+

Notes

+

Text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

+

How to apply the STDEVPA function.

+ +

Examples

+

The figure below displays the result returned by the STDEVPA function.

+

STDEVPA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm index 34b82ec2f4..d1481e7670 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm @@ -15,28 +15,32 @@

STEYX Function

-

The STEYX function is one of the statistical functions. It is used to return the standard error of the predicted y-value for each x in the regression line.

-

The STEYX function syntax is:

-

STEYX(known-ys, known-xs)

-

where

-

known-ys is an array of the dependent variables.

-

known-xs is an array of the independent variables.

-

The data values can be entered manually or included into the cells you make reference to. Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

-

Note: the known-ys and known-xs must contain the same number of data values otherwise the function will return the #N/A error value.

-

To apply the STEYX function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the STEYX function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

STEYX Function

+

The STEYX function is one of the statistical functions. It is used to return the standard error of the predicted y-value for each x in the regression line.

+

Syntax

+

STEYX(known_y's, known_x's)

+

The STEYX function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
known_y'sAn array of the dependent variables.
known_x'sAn array of the independent variables with the same number of elements as known_y's contains.
+

Notes

+

Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

+

The known_y's and known_x's must contain the same number of data values otherwise the function will return the #N/A error value.

+

How to apply the STEYX function.

+ +

Examples

+

The figure below displays the result returned by the STEYX function.

+

STEYX Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm index c2257feeb7..8036d13361 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm @@ -15,30 +15,39 @@

SUBSTITUTE Function

-

The SUBSTITUTE function is one of the text and data functions. Is used to replace a set of characters with a new one.

-

The SUBSTITUTE function syntax is:

-

SUBSTITUTE(string, old-string, new-string [, occurence])

-

where

-

string is the string to perform the substitution within.

-

old-string is the string to replace.

-

new-string is the string to replace with.

-

occurence is the number of occurences to repleace. It is an optional argument, if omitted, the function will replace all the occurences within string.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the SUBSTITUTE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the SUBSTITUTE function,
  8. -
  9. enter the required arguments separating them by comma, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUBSTITUTE Function

+

The SUBSTITUTE function is one of the text and data functions. Is used to replace a set of characters with a new one.

+

Syntax

+

SUBSTITUTE(text, old_text, new_text, [instance_num])

+

The SUBSTITUTE function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
textThe string to perform the substitution within.
old_textThe string to replace.
new_textThe string to replace with.
instance_numThe number of occurences to repleace. It is an optional argument, if omitted, the function will replace all the occurences within text.
+ +

Notes

+

How to apply the SUBSTITUTE function.

+ +

Examples

+

The figure below displays the result returned by the SUBSTITUTE function.

+

SUBSTITUTE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm index d48c204969..788498b82a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm @@ -15,90 +15,95 @@

SUBTOTAL Function

-

The SUBTOTAL function is one of the math and trigonometry functions. The function is used to return a subtotal in a list or database.

-

The SUBTOTAL function syntax is:

-

SUBTOTAL(function-number, argument-list)

-

where

-

function-number is a numeric value that specifies which function to use for the subtotal. The possible values are listed in the table below. For the function-number arguments 1 to 11, the SUBTOTAL function includes values of the rows that have been hidden manually. For the function-number arguments 101 to 111, the SUBTOTAL function ignores values of the rows that have been hidden manually. Values hidden by the filter are always excluded.

-

argument-list is a reference to the cell range containing the values for which you want the subtotal.

+

The SUBTOTAL function is one of the math and trigonometry functions. The function is used to return a subtotal in a list or database.

+

Syntax

+

SUBTOTAL(function_num, ref1, [ref2], ...)

+

The SUBTOTAL function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
function_numA numeric value that specifies which function to use for the subtotal. The possible values are listed in the table below. For the function_num arguments 1 to 11, the SUBTOTAL function includes values of the rows that have been hidden manually. For the function_num arguments 101 to 111, the SUBTOTAL function ignores values of the rows that have been hidden manually. Values hidden by the filter are always excluded.
ref1/2/nUp to 255 references to the cell range containing the values for which you want the subtotal.
+

The function_num argument can be one of the following:

- - - + + + - + - + - + - + - + - + - + - + - + - + - +
function-number
(includes hidden values)
function-number
(excludes hidden values)
Functionfunction-number (includes hidden values)function-number (excludes hidden values)Function
11 101 AVERAGE
22 102 COUNT
33 103 COUNTA
44 104 MAX
55 105 MIN
66 106 PRODUCT
77 107 STDEV
88 108 STDEVP
99 109 SUM
1010 110 VAR
1111 111 VARP
-

To apply the SUBTOTAL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUBTOTAL function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUBTOTAL Function

+

Notes

+

How to apply the SUBTOTAL function.

+ +

Examples

+

The figure below displays the result returned by the SUBTOTAL function.

+

SUBTOTAL Function

The figure below displays the result returned by the SUBTOTAL function when several rows are hidden.

-

SUBTOTAL Function

+

SUBTOTAL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm index 31a7e32d2c..60e791d779 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm @@ -15,21 +15,26 @@

SUM Function

-

The SUM function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells and return the result.

-

The SUM function syntax is:

-

SUM(argument-list)

-

where argument-list is a set of numeric values entered manually or included into the cells you make reference to.

-

How to use SUM

-

To apply the SUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, or click the
    icon situated at the formula bar and select the SUM function of the Math and trigonometry function group,
  4. -
  5. enter the required arguments separating them by commas or select the range of cells with the mouse,
  6. -
  7. press the Enter button.
  8. -
-

The result will be displayed in the selected cell.

-

+

The SUM function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells and return the result.

+

Syntax

+

SUM(number1, [number2], ...)

+

The SUM function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values that you want to add.
+

Notes

+

How to apply the SUM function.

+ +

Examples

+

The figure below displays the result returned by the SUM function.

+

SUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm index 7b86802ef9..f8b3493f17 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm @@ -15,28 +15,34 @@

SUMIF Function

-

The SUMIF function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on the specified criterion and return the result.

-

The SUMIF function syntax is:

-

SUMIF(cell-range, selection-criteria [, sum-range])

-

where

-

cell-range is the selected range of cells to apply the criterion to.

-

selection-criteria is the criterion used to determine the cells to sum, a value entered manually or included into the cell you make reference to.

-

sum-range is the range of cells to sum. It is an optional argument, if omitted, the function will sum the numbers of cell-range.

-

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

-

How to use SUMIF

-

To apply the SUMIF function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMIF function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

+

The SUMIF function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on the specified criterion and return the result.

+

Syntax

+

SUMIF(range, criteria, [sum_range])

+

The SUMIF function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
rangeThe selected range of cells to apply the criterion to.
criteriaThe criterion used to determine the cells to sum, a value entered manually or included into the cell you make reference to.
sum_rangeThe range of cells to sum. It is an optional argument, if omitted, the function will sum the numbers of range.
+

Notes

+

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

+

How to apply the SUMIF function.

+ +

Examples

+

The figure below displays the result returned by the SUMIF function.

sumif function gif

diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm index 44b2d7a421..40cf779048 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm @@ -15,30 +15,39 @@

SUMIFS Function

-

The SUMIFS function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on multiple criteria and return the result.

-

The SUMIFS function syntax is:

-

SUMIFS(sum-range, criteria-range1, criteria1, [criteria-range2, criteria2], ...)

-

where

-

sum-range is the range of cells to sum.

-

criteria-range1 is the first selected range of cells to apply the criteria1 to.

-

criteria1 is the first condition that must be met. It is applied to the criteria-range1 and used to determine the cells in the sum-range to sum. It can be a value entered manually or included into the cell you make reference to.

-

criteria-range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional.

-

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

-

How to use SUMIFS

-

To apply the SUMIFS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMIFS function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUMIFS Function

+

The SUMIFS function is one of the math and trigonometry functions. It is used to add all the numbers in the selected range of cells based on multiple criteria and return the result.

+

Syntax

+

SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

+

The SUMIFS function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
sum_rangeThe range of cells to sum.
criteria_range1The first selected range of cells to apply the criteria1 to.
criteria1The first condition that must be met. It is applied to the criteria_range1 and used to determine the cells in the sum_range to sum. It can be a value entered manually or included into the cell you make reference to.
criteria-range2, criteria2, ...Additional ranges of cells and their corresponding criteria. These arguments are optional.
+

Notes

+

You can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

+

How to apply the SUMIFS function.

+ +

Examples

+

The figure below displays the result returned by the SUMIFS function.

+

SUMIFS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm index 049a0041e4..657442ed94 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm @@ -15,25 +15,27 @@

SUMPRODUCT Function

-

The SUMPRODUCT function is one of the math and trigonometry functions. It is used to multiply the values in the selected ranges of cells or arrays and return the sum of the products.

-

The SUMPRODUCT function syntax is:

-

SUMPRODUCT(argument-lists)

-

where argument-lists are numeric values included into the cell you make reference to. You can enter up to 30 ranges of cells or arrays.

-

Note: if the argument-list contains non-numeric values, the function will treat them as 0.

-

To apply the SUMPRODUCT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMPRODUCT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUMPRODUCT Function

+

The SUMPRODUCT function is one of the math and trigonometry functions. It is used to multiply the values in the selected ranges of cells or arrays and return the sum of the products.

+

Syntax

+

SUMPRODUCT(array1, [array2], [array3], ...)

+

The SUMPRODUCT function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
array1/2/3/nUp to 255 ranges of cells or arrays containing numeric values.
+

Notes

+

If the array1/2/3/n contains non-numeric values, the function will treat them as 0.

+

How to apply the SUMPRODUCT function.

+ +

Examples

+

The figure below displays the result returned by the SUMPRODUCT function.

+

SUMPRODUCT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm index 7328437ef9..ba4584e88e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm @@ -15,24 +15,26 @@

SUMSQ Function

-

The SUMSQ function is one of the math and trigonometry functions. It is used to add the squares of numbers and return the result.

-

The SUMSQ function syntax is:

-

SUMSQ(argument-list)

-

where argument-list is up to 30 numeric values entered manually or included into the cell you make reference to.

-

To apply the SUMSQ function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMSQ function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUMSQ Function

+

The SUMSQ function is one of the math and trigonometry functions. It is used to add the squares of numbers and return the result.

+

Syntax

+

SUMSQ(number1, [number2], ...)

+

The SUMSQ function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the sum of the squares.
+

Notes

+

How to apply the SUMSQ function.

+ +

Examples

+

The figure below displays the result returned by the SUMSQ function.

+

SUMSQ Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm index 9b983890bb..00a92cac87 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm @@ -15,24 +15,30 @@

SUMX2MY2 Function

-

The SUMX2MY2 function is one of the math and trigonometry functions. It is used to sum the difference of squares between two arrays.

-

The SUMX2MY2 function syntax is:

-

SUMX2MY2(array-1, array-2)

-

where array-1 and array-2 are the ranges of cells with the same number of columns and rows.

-

To apply the SUMX2MY2 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMX2MY2 function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUMX2MY2 Function

+

The SUMX2MY2 function is one of the math and trigonometry functions. It is used to sum the difference of squares between two arrays.

+

Syntax

+

SUMX2MY2(array_x, array_y)

+

The SUMX2MY2 function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
array_xThe first range of cells.
array_yThe second range of cells with the same number of columns and rows as array_x contains.
+

Notes

+

How to apply the SUMX2MY2 function.

+ +

Examples

+

The figure below displays the result returned by the SUMX2MY2 function.

+

SUMX2MY2 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm index 8dcf2bd633..dbef346d9f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm @@ -15,24 +15,30 @@

SUMX2PY2 Function

-

The SUMX2PY2 function is one of the math and trigonometry functions. It is used to sum the squares of numbers in the selected arrays and return the sum of the results.

-

The SUMX2PY2 function syntax is:

-

SUMX2PY2(array-1, array-2)

-

where array-1 and array-2 are the selected ranges of cells with the same number of columns and rows.

-

To apply the SUMX2PY2 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMX2PY2 function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUMX2PY2 Function

+

The SUMX2PY2 function is one of the math and trigonometry functions. It is used to sum the squares of numbers in the selected arrays and return the sum of the results.

+

Syntax

+

SUMX2PY2(array_x, array_y)

+

The SUMX2PY2 function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
array_xThe first range of cells.
array_yThe second range of cells with the same number of columns and rows as array_x contains.
+

Notes

+

How to apply the SUMX2PY2 function.

+ +

Examples

+

The figure below displays the result returned by the SUMX2PY2 function.

+

SUMX2PY2 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm index efd8668188..f0ba9c9f10 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm @@ -15,24 +15,30 @@

SUMXMY2 Function

-

The SUMXMY2 function is one of the math and trigonometry functions. It is used to return the sum of the squares of the differences between corresponding items in the arrays.

-

The SUMXMY2 function syntax is:

-

SUMXMY2(array-1, array-2)

-

where array-1 and array-2 are the selected ranges of cells with the same number of columns and rows.

-

To apply the SUMXMY2 function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the SUMXMY2 function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SUMXMY2 Function

+

The SUMXMY2 function is one of the math and trigonometry functions. It is used to return the sum of the squares of the differences between corresponding items in the arrays.

+

Syntax

+

SUMXMY2(array_x, array_y)

+

The SUMXMY2 function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
array_xThe first range of cells.
array_yThe second range of cells with the same number of columns and rows as array_x contains.
+

Notes

+

How to apply the SUMXMY2 function.

+ +

Examples

+

The figure below displays the result returned by the SUMXMY2 function.

+

SUMXMY2 Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm index 8712b1d9a6..c56ce0b6e1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm @@ -15,30 +15,39 @@

SWITCH Function

-

The SWITCH function is one of the logical functions. It is used to evaluate one value (called the expression) against a list of values, and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.

-

The SWITCH function syntax is:

-

SWITCH(expression, value1, result1 [, [default or value2] [, [result2]], ...[default or value3, result3]])

-

where

-

expression is the value that will be compared against value1 ...value126.

-

value1 ...value126 is the value that will be compared against expression.

-

result1 ...result126 is the result to be returned if the value1 ...value126 matches to the expression.

-

default is the result to be returned if there are no matches. If the default argument is not specified and there are no matches, the function returns the #N/A error.

-

Note: you can enter up to 254 arguments i.e. up to 126 pairs of values and results.

-

To apply the SWITCH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the SWITCH function,
  8. -
  9. enter the required arguments separating them by commas, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SWITCH Function

+

The SWITCH function is one of the logical functions. It is used to evaluate one value (called the expression) against a list of values, and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.

+

Syntax

+

SWITCH(expression, value1, result1, [default_or_value2, result2], ...)

+

The SWITCH function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
expressionThe value that will be compared against value1 ...value126.
value1 ...value126The value that will be compared against expression.
result1 ...result126The result to be returned if the value1 ...value126 matches to the expression.
defaultThe result to be returned if there are no matches. If the default argument is not specified and there are no matches, the function returns the #N/A error.
+

Notes

+

You can enter up to 254 arguments i.e. up to 126 pairs of values and results.

+

How to apply the SWITCH function.

+ +

Examples

+

The figure below displays the result returned by the SWITCH function.

+

SWITCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm index eb4440fd3d..fd11e1930b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm @@ -15,29 +15,38 @@

SYD Function

-

The SYD function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the sum of the years' digits method.

-

The SYD function syntax is:

-

SYD(cost, salvage, life, per)

-

where

-

cost is the cost of the asset.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

life is the total number of the periods within the asset lifetime.

-

per is the period you wish to calculate depreciation for. The value must be expressed in the same units as life.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the SYD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the SYD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

SYD Function

+

The SYD function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified accounting period using the sum of the years' digits method.

+

Syntax

+

SYD(cost, salvage, life, per)

+

The SYD function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
costThe cost of the asset.
salvageThe salvage value of the asset at the end of its lifetime.
lifeThe total number of the periods within the asset lifetime.
perThe period you wish to calculate depreciation for. The value must be expressed in the same units as life.
+

Notes

+

How to apply the SYD function.

+ +

Examples

+

The figure below displays the result returned by the SYD function.

+

SYD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm index 62d4c50868..95a8096d1b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm @@ -15,27 +15,30 @@

T.DIST.2T Function

-

The T.DIST.2T function is one of the statistical functions. Returns the two-tailed Student's t-distribution. The Student's t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

-

The T.DIST.2T function syntax is:

-

T.DIST.2T(x, deg-freedom)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the T.DIST.2T function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the T.DIST.2T function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

T.DIST.2T Function

+

The T.DIST.2T function is one of the statistical functions. Returns the two-tailed Student's t-distribution. The Student's t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

+

Syntax

+

T.DIST.2T(x, deg_freedom)

+

The T.DIST.2T function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
+

Notes

+

How to apply the T.DIST.2T function.

+ +

Examples

+

The figure below displays the result returned by the T.DIST.2T function.

+

T.DIST.2T Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm index 4801a09485..fe32b9a3e8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm @@ -15,27 +15,30 @@

T.DIST.RT Function

-

The T.DIST.RT function is one of the statistical functions. Returns the right-tailed Student's t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

-

The T.DIST.RT function syntax is:

-

T.DIST.RT(x, deg-freedom)

-

where

-

x is the value at which the function should be calculated.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the T.DIST.RT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the T.DIST.RT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

T.DIST.RT Function

+

The T.DIST.RT function is one of the statistical functions. Returns the right-tailed Student's t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

+

Syntax

+

T.DIST.RT(x, deg_freedom)

+

The T.DIST.RT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
+

Notes

+

How to apply the T.DIST.RT function.

+ +

Examples

+

The figure below displays the result returned by the T.DIST.RT function.

+

T.DIST.RT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm index ed67705ac7..ef87b29b76 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm @@ -15,28 +15,34 @@

T.DIST Function

-

The T.DIST function is one of the statistical functions. Returns the Student's left-tailed t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

-

The T.DIST function syntax is:

-

T.DIST(x, deg-freedom, cumulative)

-

where

-

x is the value at which the function should be calculated.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the T.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the T.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

T.DIST Function

+

The T.DIST function is one of the statistical functions. Returns the Student's left-tailed t-distribution. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

+

Syntax

+

T.DIST(x, deg_freedom, cumulative)

+

The T.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+

Notes

+

How to apply the T.DIST function.

+ +

Examples

+

The figure below displays the result returned by the T.DIST function.

+

T.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm index c6d4c5d8c2..56bd9135a6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm @@ -15,27 +15,30 @@

T.INV.2T Function

-

The T.INV.2T function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution.

-

The T.INV.2T function syntax is:

-

T.INV.2T(probability, deg-freedom)

-

where

-

probability is the probability associated with the Student's t-distribution. A numeric value greater than 0 but less than or equal to 1.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the T.INV.2T function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the T.INV.2T function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

T.INV.2T Function

+

The T.INV.2T function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution.

+

Syntax

+

T.INV.2T(probability, deg_freedom)

+

The T.INV.2T function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the Student's t-distribution. A numeric value greater than 0 but less than 1.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
+

Notes

+

How to apply the T.INV.2T function.

+ +

Examples

+

The figure below displays the result returned by the T.INV.2T function.

+

T.INV.2T Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm index c859621274..719d93d7f8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm @@ -15,27 +15,30 @@

T.INV Function

-

The T.INV function is one of the statistical functions. Returns the left-tailed inverse of the Student's t-distribution.

-

The T.INV function syntax is:

-

T.INV(probability, deg-freedom)

-

where

-

probability is the probability associated with the Student's t-distribution. A numeric value greater than 0 but less than 1.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the T.INV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the T.INV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

T.INV Function

+

The T.INV function is one of the statistical functions. Returns the left-tailed inverse of the Student's t-distribution.

+

Syntax

+

T.INV(probability, deg_freedom)

+

The T.INV function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the Student's t-distribution. A numeric value greater than 0 but less than 1.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
+

Notes

+

How to apply the T.INV function.

+ +

Examples

+

The figure below displays the result returned by the T.INV function.

+

T.INV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm index 1244741226..88d3e265ef 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm @@ -15,47 +15,58 @@

T.TEST Function

-

The T.TEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use T.TEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.

-

The T.TEST function syntax is:

-

T.TEST(array1, array2, tails, type)

-

where

-

array1 is the first range of numeric values.

-

array2 is the second range of numeric values.

-

tails is the number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution.

-

type is a numeric value that specifies the kind of t-Test to be performed. The value can be one of the following:

+

The T.TEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use T.TEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.

+

Syntax

+

T.TEST(array1, array2, tails, type)

+

The T.TEST function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueThe kind of t-TestArgumentDescription
1array1The first range of numeric values.
array2The second range of numeric values.
tailsThe number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution.
typeA numeric value that specifies the kind of t-Test to be performed. The possible values are listed in the table below.
+

The type argument can be one of the following:

+ + + + + + + - + - +
Numeric valueThe kind of t-Test
1 Paired
22 Two-sample equal variance (homoscedastic)
33 Two-sample unequal variance (heteroscedastic)
-

The values can be entered manually or included into the cell you make reference to.

-

To apply the T.TEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the T.TEST function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

T.TEST Function

+

Notes

+ +

How to apply the T.TEST function.

+ +

Examples

+

The figure below displays the result returned by the T.TEST function.

+

T.TEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm index b0ff420cf5..5e51adf165 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm @@ -15,29 +15,28 @@

T Function

-

The T function is one of the text and data functions. Is used to check whether the value in the cell (or used as argument) is text or not. In case it is not text, the function returns blank result. In case the value/argument is text, the function returns the same text value.

-

The T function syntax is:

-

T(value)

-

where value is data entered manually or included into the cell you make reference to.

-

To apply the T function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the T function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

There is an argument: value = A1, where A1 is date and time. So the function returns date and time.

-

T Function: Text

+

The T function is one of the text and data functions. Is used to check whether the value in the cell (or used as argument) is text or not. In case it is not text, the function returns blank result. In case the value/argument is text, the function returns the same text value.

+

Syntax

+

T(value)

+

The T function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueThe value you want to test.
+

Notes

+

How to apply the T function.

+ +

Examples

+

There is an argument: value = A1, where A1 is date and time. So the function returns date and time.

+

T Function: Text

If we change the A1 data from text to numerical value, the function returns blank result.

-

T Function: Numerical Value

+

T Function: Numerical Value

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/take.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/take.htm index e17e18ed6b..4dea5d131a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/take.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/take.htm @@ -15,29 +15,35 @@

TAKE Function

-

The TAKE function is one of the lookup and reference functions. It is used to return rows or columns from array start or end.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The TAKE function syntax is:

-

TAKE(array, rows, [columns])

-

where

-

array is used to set the array from which to take rows or columns.

-

rows is used to set the number of rows to take. A negative value takes from the end of the array.

-

columns is used to set the number of columns to take. A negative value takes from the end of the array.

-

To apply the TAKE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the TAKE function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The TAKE function is one of the lookup and reference functions. It is used to return rows or columns from array start or end.

+

Syntax

+

TAKE(array, rows, [columns])

+

The TAKE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayIs used to set the array from which to take rows or columns.
rowsIs used to set the number of rows to take. A negative value takes from the end of the array.
columnsIs used to set the number of columns to take. A negative value takes from the end of the array.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the TAKE function.

+ +

Examples

+

The figure below displays the result returned by the TAKE function.

+

TAKE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm index 62fe4d09fc..fb48ec78dd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm @@ -15,24 +15,26 @@

TAN Function

-

The TAN function is one of the math and trigonometry functions. It is used to return the tangent of an angle.

-

The TAN function syntax is:

-

TAN(x)

-

where x is the angle in radians that you wish to calculate the tangent of. A numeric value entered manually or included into the cell you make reference to. It is a required argument.

-

To apply the TAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the TAN function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TAN Function

+

The TAN function is one of the math and trigonometry functions. It is used to return the tangent of an angle.

+

Syntax

+

TAN(number)

+

The TAN function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe angle in radians that you wish to calculate the tangent of.
+

Notes

+

How to apply the TAN function.

+ +

Examples

+

The figure below displays the result returned by the TAN function.

+

TAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm index 0e550d56e9..45e19ca15d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm @@ -15,24 +15,26 @@

TANH Function

-

The TANH function is one of the math and trigonometry functions. It is used to return the hyperbolic tangent of a number.

-

The TANH function syntax is:

-

TANH(x)

-

where x is a numeric value entered manually or included into the cell you make reference to.

-

To apply the TANH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the TANH function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TANH Function

+

The TANH function is one of the math and trigonometry functions. It is used to return the hyperbolic tangent of a number.

+

Syntax

+

TANH(number)

+

The TANH function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberA numeric value for which you want to get the hyperbolic tangent.
+

Notes

+

How to apply the TANH function.

+ +

Examples

+

The figure below displays the result returned by the TANH function.

+

TANH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm index 7a968f9f64..86e8508189 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm @@ -15,29 +15,35 @@

TBILLEQ Function

-

The TBILLEQ function is one of the financial functions. It is used to calculate the bond-equivalent yield of a Treasury bill.

-

The TBILLEQ function syntax is:

-

TBILLEQ(settlement, maturity, discount)

-

where

-

settlement is the date when the Treasury bill is purchased.

-

maturity is the date when the Treasury bill expires. This date must be within one year of the settlement date.

-

discount is the discount rate of the Treasury bill.

-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the TBILLEQ function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the TBILLEQ function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TBILLEQ Function

+

The TBILLEQ function is one of the financial functions. It is used to calculate the bond-equivalent yield of a Treasury bill.

+

Syntax

+

TBILLEQ(settlement, maturity, discount)

+

The TBILLEQ function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
settlementThe date when the Treasury bill is purchased.
maturityThe date when the Treasury bill expires. This date must be within one year of the settlement date.
discountThe discount rate of the Treasury bill.
+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the TBILLEQ function.

+ +

Examples

+

The figure below displays the result returned by the TBILLEQ function.

+

TBILLEQ Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm index 8869457d0e..e3ee1469e5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm @@ -15,30 +15,35 @@

TBILLPRICE Function

-

The TBILLPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a Treasury bill.

-

The TBILLPRICE function syntax is:

-

TBILLPRICE(settlement, maturity, discount)

-

where

-

settlement is the date when the Treasury bill is purchased.

-

maturity is the date when the Treasury bill expires. This date must be within one year of the settlement date.

-

discount is the discount rate of the Treasury bill.

-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the TBILLPRICE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the TBILLPRICE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TBILLPRICE Function

+

The TBILLPRICE function is one of the financial functions. It is used to calculate the price per $100 par value for a Treasury bill.

+

Syntax

+

TBILLPRICE(settlement, maturity, discount)

+

The TBILLPRICE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
settlementThe date when the Treasury bill is purchased.
maturityThe date when the Treasury bill expires. This date must be within one year of the settlement date.
discountThe discount rate of the Treasury bill.
+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the TBILLPRICE function.

+ +

Examples

+

The figure below displays the result returned by the TBILLPRICE function.

+

TBILLPRICE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm index 2d43aeea99..9231403929 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm @@ -15,29 +15,35 @@

TBILLYIELD Function

-

The TBILLYIELD function is one of the financial functions. It is used to calculate the yield of a Treasury bill.

-

The TBILLYIELD function syntax is:

-

TBILLYIELD(settlement, maturity, pr)

-

where

-

settlement is the date when the Treasury bill is purchased.

-

maturity is the date when the Treasury bill expires. This date must be within one year of the settlement date.

-

pr is the purchase price of the Treasury bill, per $100 par value.

-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the TBILLYIELD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the TBILLYIELD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TBILLYIELD Function

+

The TBILLYIELD function is one of the financial functions. It is used to calculate the yield of a Treasury bill.

+

Syntax

+

TBILLYIELD(settlement, maturity, pr)

+

The TBILLYIELD function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
settlementThe date when the Treasury bill is purchased.
maturityThe date when the Treasury bill expires. This date must be within one year of the settlement date.
prThe purchase price of the Treasury bill, per $100 par value.
+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the TBILLYIELD function.

+ +

Examples

+

The figure below displays the result returned by the TBILLYIELD function.

+

TBILLYIELD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm index 07a506ad7b..9a9eddda3b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm @@ -15,28 +15,34 @@

TDIST Function

-

The TDIST function is one of the statistical functions. Returns the Percentage Points (probability) for the Student t-distribution where a numeric value (x) is a calculated value of t for which the Percentage Points are to be computed. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

-

The TDIST function syntax is:

-

TDIST(x, deg-freedom, tails)

-

where

-

x is the value at which the function should be calculated. A numeric value greater than 0.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

tails is a numeric value that specifies the number of distribution tails to return. If it is set to 1, the function returns the one-tailed distribution. If it is set to 2, the function returns the two-tailed distribution.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the TDIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the TDIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TDIST Function

+

The TDIST function is one of the statistical functions. Returns the Percentage Points (probability) for the Student t-distribution where a numeric value (x) is a calculated value of t for which the Percentage Points are to be computed. The t-distribution is used in the hypothesis testing of small sample data sets. Use this function in place of a table of critical values for the t-distribution.

+

Syntax

+

TDIST(x, deg_freedom, tails)

+

The TDIST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value at which the function should be calculated. A numeric value greater than 0.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
tailsA numeric value that specifies the number of distribution tails to return. If it is set to 1, the function returns the one-tailed distribution. If it is set to 2, the function returns the two-tailed distribution.
+

Notes

+

How to apply the TDIST function.

+ +

Examples

+

The figure below displays the result returned by the TDIST function.

+

TDIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm index ce8f53aff4..b518e720a5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm @@ -15,28 +15,30 @@

TEXT Function

-

The TEXT function is one of the text and data functions. Is used to convert a value to a text in the specified format.

-

The TEXT function syntax is:

-

TEXT(value, format)

-

where

-

value is a value to convert to text.

-

format is a format to display the results in.

-

The data can be entered manually or included into the cells you make reference to.

-

To apply the TEXT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the TEXT function,
  8. -
  9. enter the required arguments separating them by comma, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TEXT Function

+

The TEXT function is one of the text and data functions. Is used to convert a value to a text in the specified format.

+

Syntax

+

TEXT(value, format_text)

+

The TEXT function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
valueA value to convert to text.
format_textA format to display the results in.
+

Notes

+

How to apply the TEXT function.

+ +

Examples

+

The figure below displays the result returned by the TEXT function.

+

TEXT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/textafter.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/textafter.htm index 64772afe92..f1af77b85b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/textafter.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/textafter.htm @@ -15,31 +15,46 @@

TEXTAFTER Function

-

The TEXTAFTER function is one of the text and data functions. It is used to return text occurring after delimiting characters.

-

The TEXTAFTER function syntax is:

-

TEXTAFTER(text,delimiter,[instance_num], [match_mode], [match_end], [if_not_found])

-

where

-

text is the text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text.

-

delimiter is the text that marks the point after which the function extracts the text.

-

instance_num is an optional argument. The instance of the delimiter after which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end.

-

match_mode is an optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive.

-

match_end is an optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text.

-

if_not_found is an optional argument. It sets a value that is returned if no match is found.

-

To apply the TEXTAFTER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the TEXTAFTER function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TEXTAFTER Function

+

The TEXTAFTER function is one of the text and data functions. It is used to return text occurring after delimiting characters.

+

Syntax

+

TEXTAFTER(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])

+

The TEXTAFTER function has the following argument:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
textThe text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text.
delimiterThe text that marks the point after which the function extracts the text.
instance_numAn optional argument. The instance of the delimiter after which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end.
match_modeAn optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive.
match_endAn optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text.
if_not_foundAn optional argument. It sets a value that is returned if no match is found.
+

Notes

+

How to apply the TEXTAFTER function.

+ +

Examples

+

The figure below displays the result returned by the TEXTAFTER function.

+

TEXTAFTER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/textbefore.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/textbefore.htm index 4c98572d6e..b70b4b77ae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/textbefore.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/textbefore.htm @@ -15,31 +15,46 @@

TEXTBEFORE Function

-

The TEXTBEFORE function is one of the text and data functions. It is used to return text occurring before delimiting characters.

-

The TEXTBEFORE function syntax is:

-

TEXTBEFORE(text,delimiter,[instance_num], [match_mode], [match_end], [if_not_found])

-

where

-

text is the text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text.

-

delimiter is the text that marks the point before which the function extracts the text.

-

instance_num is an optional argument. The instance of the delimiter before which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end.

-

match_mode is an optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive.

-

match_end is an optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text.

-

if_not_found is an optional argument. It sets a value that is returned if no match is found.

-

To apply the TEXTBEFORE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the TEXTBEFORE function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TEXTBEFORE Function

+

The TEXTBEFORE function is one of the text and data functions. It is used to return text occurring before delimiting characters.

+

Syntax

+

TEXTBEFORE(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])

+

The TEXTBEFORE function has the following argument:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
textThe text the search is conducted within. Wildcard characters are not allowed. If text is an empty string, the function returns empty text.
delimiterThe text that marks the point before which the function extracts the text.
instance_numAn optional argument. The instance of the delimiter before which the function extracts the text. By default, instance_num equals 1. A negative number will start the text search from the end.
match_modeAn optional argument. It is used to determine whether the text search is case-sensitive. The default is case-sensitive. The following values are used: 0 for case sensitive, 1 for case insensitive.
match_endAn optional argument. It treats the end of text as a delimiter. By default, the text is an exact match. The following values are used: 0 for not matching the delimiter against the end of the text, 1 for matching the delimiter against the end of the text.
if_not_foundAn optional argument. It sets a value that is returned if no match is found.
+

Notes

+

How to apply the TEXTBEFORE function.

+ +

Examples

+

The figure below displays the result returned by the TEXTBEFORE function.

+

TEXTBEFORE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm index 6e5b1603fc..5b83a13de1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm @@ -15,27 +15,34 @@

TEXTJOIN Function

-

The TEXTJOIN function is one of the text and data functions. Is used to combine the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined; if the delimiter is an empty text string, this function will effectively concatenate the ranges. This function is similar to the CONCAT function, but the difference is that the CONCAT function cannot accept a delimiter.

-

The TEXTJOIN function syntax is:

-

TEXTJOIN(delimiter, ignore_empty, text1 [, text2], …)

-

where

-

delimiter is the delimiter to be inserted between the text values. Can be specified as a text string enclosed by double quotes (e.g. "," (comma), " " (space), "\" (backslash) etc.) or as a reference to a cell or range of cells.

-

ignore_empty is a logical value that specifies whether empty cells should be ignored. When the value is set to TRUE, empty cells are ignored.

-

text1(2) is up to 252 data values. Each value can be a text string or a reference to a range of cells.

-

To apply the TEXTJOIN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the TEXTJOIN function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TEXTJOIN Function

+

The TEXTJOIN function is one of the text and data functions. Is used to combine the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined; if the delimiter is an empty text string, this function will effectively concatenate the ranges. This function is similar to the CONCAT function, but the difference is that the CONCAT function cannot accept a delimiter.

+

Syntax

+

TEXTJOIN(delimiter, ignore_empty, text1, [text2], ...)

+

The TEXTJOIN function has the following argument:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
delimiterThe delimiter to be inserted between the text values. Can be specified as a text string enclosed by double quotes (e.g. "," (comma), " " (space), "\" (backslash) etc.) or as a reference to a cell or range of cells.
ignore_emptyA logical value that specifies whether empty cells should be ignored. When the value is set to TRUE, empty cells are ignored.
text1/2/nUp to 253 data values. Each value can be a text string or a reference to a range of cells.
+

Notes

+

How to apply the TEXTJOIN function.

+ +

Examples

+

The figure below displays the result returned by the TEXTJOIN function.

+

TEXTJOIN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/textsplit.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/textsplit.htm index 8a133dc9da..859aee6d76 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/textsplit.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/textsplit.htm @@ -15,32 +15,47 @@

TEXTSPLIT Function

-

The TEXTSPLIT function is one of the text and data functions. It is used to split text strings through column and row delimiters.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The TEXTSPLIT function syntax is:

-

TEXTSPLIT(text,col_delimiter,[row_delimiter],[ignore_empty], [match_mode], [pad_with])

-

where

-

text is used to set the text you want to split.

-

col_delimiter is an optional argument. It is used to set the text that marks the point where to split the text across columns.

-

row_delimiter is an optional argument. It is used to set the text that marks the point where to split the text down rows.

-

ignore_empty is an optional argument. It is used to specify FALSE to create an empty cell when two delimiters are consecutive. Defaults to TRUE, which creates an empty cell.

-

match_mode is an optional argument. It is used to search the text for a delimiter match. By default, a case-sensitive match is done.

-

pad_with is used to set the value with which to pad the result. Defaults to #N/A.

-

To apply the TEXTSPLIT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the TEXTSPLIT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TEXTSPLIT Function

+

The TEXTSPLIT function is one of the text and data functions. It is used to split text strings through column and row delimiters.

+

Syntax

+

TEXTSPLIT(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])

+

The TEXTSPLIT function has the following argument:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
textThe text you want to split.
col_delimiterAn optional argument. It is used to set the text that marks the point where to split the text across columns.
row_delimiterAn optional argument. It is used to set the text that marks the point where to split the text down rows.
ignore_emptyAn optional argument. It is used to specify FALSE to create an empty cell when two delimiters are consecutive. Defaults to TRUE, which creates an empty cell.
match_modeAn optional argument. It is used to search the text for a delimiter match. By default, a case-sensitive match is done.
pad_withIs used to set the value with which to pad the result. Defaults to #N/A.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the TEXTSPLIT function.

+ +

Examples

+

The figure below displays the result returned by the TEXTSPLIT function.

+

TEXTSPLIT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm index 8abf2a4fd4..c83fe11550 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm @@ -15,28 +15,34 @@

TIME Function

-

The TIME function is one of the date and time functions. It is used to add a particular time in the selected format (hh:mm tt by default).

-

The TIME function syntax is:

-

TIME(hour, minute, second)

-

where

-

hour is a number from 0 to 23.

-

minute is a number from 0 to 59.

-

second is a number from 0 to 59.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the TIME function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the TIME function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TIME Function

+

The TIME function is one of the date and time functions. It is used to add a particular time in the selected format (hh:mm tt by default).

+

Syntax

+

TIME(hour, minute, second)

+

The TIME function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
hourA number from 0 to 23.
minuteA number from 0 to 59.
secondA number from 0 to 59.
+

Notes

+

How to apply the TIME function.

+ +

Examples

+

The figure below displays the result returned by the TIME function.

+

TIME Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm index 527c2ba192..526c38b40e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm @@ -15,24 +15,26 @@

TIMEVALUE Function

-

The TIMEVALUE function is one of the date and time functions. It is used to return the serial number of a time.

-

The TIMEVALUE function syntax is:

-

TIMEVALUE(date-time-string)

-

where date-time-string is a value entered manually or included into the cell you make reference to.

-

To apply the TIMEVALUE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the TIMEVALUE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TIMEVALUE Function

+

The TIMEVALUE function is one of the date and time functions. It is used to return the serial number of a time.

+

Syntax

+

TIMEVALUE(time_text)

+

The TIMEVALUE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
time_textA text string that represents a time, e.g. "4:30 PM" or "16:30".
+

Notes

+

How to apply the TIMEVALUE function.

+ +

Examples

+

The figure below displays the result returned by the TIMEVALUE function.

+

TIMEVALUE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm index 060ac87ce1..43602ddae1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm @@ -15,27 +15,30 @@

TINV Function

-

The TINV function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution.

-

The TINV function syntax is:

-

TINV(probability, deg-freedom)

-

where

-

probability is the probability associated with the two-tailed Student's t-distribution. A numeric value greater than 0 but less than or equal to 1.

-

deg-freedom is the number of degrees of freedom, an integer greater than or equal to 1.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the TINV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the TINV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TINV Function

+

The TINV function is one of the statistical functions. Returns the two-tailed inverse of the Student's t-distribution.

+

Syntax

+

TINV(probability, deg_freedom)

+

The TINV function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
probabilityThe probability associated with the two-tailed Student's t-distribution. A numeric value greater than 0 but less than or equal to 1.
deg_freedomThe number of degrees of freedom, an integer greater than or equal to 1.
+

Notes

+

How to apply the TINV function.

+ +

Examples

+

The figure below displays the result returned by the TINV function.

+

TINV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tocol.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tocol.htm index 104b259c33..a5efce9b75 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tocol.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tocol.htm @@ -15,29 +15,36 @@

TOCOL Function

-

The TOCOL function is one of the lookup and reference functions. It is used to return the array as one row.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The TOCOL function syntax is:

-

TOCOL (array, [ignore], [scan_by_column])

-

where

-

array is the array or reference to return as a column.

-

ignore is used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors.

-

scan_by_column is used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns.

-

To apply the TOCOL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the TOCOL function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The TOCOL function is one of the lookup and reference functions. It is used to return the array as one column.

+

Syntax

+

TOCOL (array, [ignore], [scan_by_column])

+

The TOCOL function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe array or reference to return as a column.
ignoreIs used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors.
scan_by_columnIs used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns. A logical value (TRUE or FALSE).
+

Notes

+

If scan_by_column is omitted or FALSE, the array is scanned by row. If it is TRUE, the array is scanned by column.

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the TOCOL function.

+ +

Examples

+

The figure below displays the result returned by the TOCOL function.

+

TOCOL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm index d4210d5a9b..31068674ed 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm @@ -15,22 +15,15 @@

TODAY Function

-

The TODAY function is one of the date and time functions. It is used to add the current day in the following format MM/dd/yy. This function does not require an argument.

-

The TODAY function syntax is:

-

TODAY()

-

To apply the TODAY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the TODAY function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

TODAY Function

+

The TODAY function is one of the date and time functions. It is used to add the current day in the following format MM/dd/yy. This function does not require an argument.

+

Syntax

+

TODAY()

+

Notes

+

How to apply the TODAY function.

+ +

Examples

+

The figure below displays the result returned by the TODAY function.

+

TODAY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/torow.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/torow.htm index baf9a4a044..0f7b94e5c9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/torow.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/torow.htm @@ -15,29 +15,36 @@

TOROW Function

-

The TOROW function is one of the lookup and reference functions. It is used to return the array as one row.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The TOROW function syntax is:

-

TOROW (array, [ignore], [scan_by_column])

-

where

-

array is the array or reference to return as a row.

-

ignore is used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors.

-

scan_by_column is used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns.

-

To apply the TOROW function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the TOROW function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The TOROW function is one of the lookup and reference functions. It is used to return the array as one row.

+

Syntax

+

TOROW (array, [ignore], [scan_by_column])

+

The TOROW function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe array or reference to return as a row.
ignoreIs used to set whether to ignore certain types of values. Defaults to ignoring no values. The following values are used: 0 to keep all values (default); 1 to ignore blanks; 2 to ignore errors; 3 to ignore blanks and errors.
scan_by_columnIs used to scan the array by column. By default, array scanning is conducted by row. Scanning determines whether the values are arranged in rows or columns. A logical value (TRUE or FALSE).
+

Notes

+

If scan_by_column is omitted or FALSE, the array is scanned by row. If it is TRUE, the array is scanned by column.

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the TOROW function.

+ +

Examples

+

The figure below displays the result returned by the TOROW function.

+

TOROW Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm index 5497acfa30..ebe5efb559 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm @@ -15,27 +15,27 @@

TRANSPOSE Function

-

The TRANSPOSE function is one of the lookup and reference functions. It is used to return the first element of an array.

-

The TRANSPOSE function syntax is:

-

TRANSPOSE(array)

-

where

-

array is a reference to a range of cells.

-

To apply the TRANSPOSE function,

-
    -
  1. select a cell where you wish to display the result, - -
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the TRANSPOSE function,
  8. -
  9. select a range of cells with the mouse or enter it manually, like this A1:B2,
  10. -
  11. press the Enter key.
  12. -
-

The result will be displayed in the selected range of cells.

-

TRANSPOSE Function

+

The TRANSPOSE function is one of the lookup and reference functions. It is used to convert columns into rows and rows into columns.

+

Syntax

+

TRANSPOSE(array)

+

The TRANSPOSE function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
arrayA reference to a range of cells.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the TRANSPOSE function.

+ +

Examples

+

The figure below displays the result returned by the TRANSPOSE function.

+

TRANSPOSE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trend.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trend.htm index ba695c4118..8281bd79f6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/trend.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trend.htm @@ -15,31 +15,40 @@

TREND Function

-

The TREND function is one of the statistical functions. It is used to calculate a linear trend line and returns values along it using the method of least squares.

-

The TREND function syntax is:

-

TREND(known_y’s, [known_x’s], [new_x’s], [const])

-

where

-

known_y’s is the set of y-values you already know in the y = mx + b equation.

-

known_x’s is the optional set of x-values you might know in the y = mx + b equation.

-

new_x’s is the optional set of x-values you want y-values to be returned to.

-

const is an optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 0 in the y = mx + b equation and m-values correspond with the y = mx equation. -

- -

To apply the TREND function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the TREND function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TREND Function

+

The TREND function is one of the statistical functions. It is used to calculate a linear trend line and returns values along it using the method of least squares.

+

Syntax

+

TREND(known_y’s, [known_x’s], [new_x’s], [const])

+

The TREND function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
known_y’sThe set of y-values you already know in the y = mx + b equation.
known_x’sThe optional set of x-values you might know in the y = mx + b equation.
new_x’sThe optional set of x-values you want y-values to be returned to.
constAn optional argument. It is a TRUE or FALSE value where TRUE or lack of the argument forces b to be calculated normally and FALSE sets b to 0 in the y = mx + b equation and m-values correspond with the y = mx equation.
+ +

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the TREND function.

+ +

Examples

+

The figure below displays the result returned by the TREND function.

+

TREND Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm index 600b90efb7..9484852258 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm @@ -15,25 +15,26 @@

TRIM Function

-

The TRIM function is one of the text and data functions. Is used to remove the leading and trailing spaces from a string.

-

The TRIM function syntax is:

-

TRIM(string)

-

where string is a text value entered manually or included into the cell you make reference to.

-

To apply the TRIM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the TRIM function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TRIM Function

+

The TRIM function is one of the text and data functions. Is used to remove the leading and trailing spaces from a string.

+

Syntax

+

TRIM(text)

+

The TRIM function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textA text value from which you want to remove spaces.
+

Notes

+

How to apply the TRIM function.

+ +

Examples

+

The figure below displays the result returned by the TRIM function.

+

TRIM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm index d1e765379a..26f249552e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm @@ -15,27 +15,30 @@

TRIMMEAN Function

-

The TRIMMEAN function is one of the statistical functions. It is used to return the mean of the interior of a data set. TRIMMEAN calculates the mean taken by excluding a percentage of data points from the top and bottom tails of a data set.

-

The TRIMMEAN function syntax is:

-

TRIMMEAN(array, percent)

-

where

-

array is the range of numeric values to trim and average.

-

percent is a total percent of data points to exclude from the calculation. A numeric value greater than or equal to 0 but less than 1. The number of excluded data points is rounded down to the nearest multiple of 2. E.g., if array contains 30 values and percent is 0.1, 10 percent of 30 points is 3. This value is rounded down to 2, so 1 point is trimmed from each tail of the data set: 1 from the top and 1 from the bottom of the set.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the TRIMMEAN function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the TRIMMEAN function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TRIMMEAN Function

+

The TRIMMEAN function is one of the statistical functions. It is used to return the mean of the interior of a data set. TRIMMEAN calculates the mean taken by excluding a percentage of data points from the top and bottom tails of a data set.

+

Syntax

+

TRIMMEAN(array, percent)

+

The TRIMMEAN function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of numeric values to trim and average.
percentA total percent of data points to exclude from the calculation. A numeric value greater than or equal to 0 but less than 1. The number of excluded data points is rounded down to the nearest multiple of 2. E.g., if array contains 30 values and percent is 0.1, 10 percent of 30 points is 3. This value is rounded down to 2, so 1 point is trimmed from each tail of the data set: 1 from the top and 1 from the bottom of the set.
+

Notes

+

How to apply the TRIMMEAN function.

+ +

Examples

+

The figure below displays the result returned by the TRIMMEAN function.

+

TRIMMEAN Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm index 816f5438ba..ef9f7d1483 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm @@ -15,22 +15,15 @@

TRUE Function

-

The TRUE function is one of the logical functions. The function returns TRUE and does not require any argument.

-

The TRUE function syntax is:

-

TRUE()

-

To apply the TRUE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the TRUE function,
  8. -
  9. press the Enter button.
  10. -
-

The result will be displayed in the selected cell.

-

TRUE Function

+

The TRUE function is one of the logical functions. The function returns TRUE and does not require any argument.

+

Syntax

+

TRUE()

+

Notes

+

How to apply the TRUE function.

+ +

Examples

+

The figure below displays the result returned by the TRUE function.

+

TRUE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm index a8ee4ce0e2..0ea28bbf7c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm @@ -15,27 +15,30 @@

TRUNC Function

-

The TRUNC function is one of the math and trigonometry functions. It is used to return a number truncated to a specified number of digits.

-

The TRUNC function syntax is:

-

TRUNC(x [,number-digits])

-

where

-

x is a number to truncate.

-

number-digits is a number of decimal places to display. It is an optional argument. If omitted, the function will assume it to be 0.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the TRUNC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Math and trigonometry function group from the list,
  6. -
  7. click the TRUNC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TRUNC Function

+

The TRUNC function is one of the math and trigonometry functions. It is used to return a number truncated to a specified number of digits.

+

Syntax

+

TRUNC(number, [num_digits])

+

The TRUNC function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
numberA number to truncate.
num_digitsA number of decimal places to display. It is an optional argument. If omitted, the function will assume it to be 0.
+

Notes

+

How to apply the TRUNC function.

+ +

Examples

+

The figure below displays the result returned by the TRUNC function.

+

TRUNC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm index 726a058109..302f1bb4ce 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm @@ -15,47 +15,57 @@

TTEST Function

-

The TTEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.

-

The TTEST function syntax is:

-

TTEST(array1, array2, tails, type)

-

where

-

array1 is the first range of numeric values.

-

array2 is the second range of numeric values.

-

tails is the number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution.

-

type is a numeric value that specifies the kind of t-Test to be performed. The value can be one of the following:

+

The TTEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.

+

Syntax

+

TTEST(array1, array2, tails, type)

+

The TTEST function has the following arguments:

- - + + - + + + + + + + + + + + + + + + +
Numeric valueThe kind of t-TestArgumentDescription
1array1The first range of numeric values.
array2The second range of numeric values.
tailsThe number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution.
typeA numeric value that specifies the kind of t-Test to be performed. The possible values are listed in the table below.
+

The type argument can be one of the following:

+ + + + + + + - + - +
Numeric valueThe kind of t-Test
1 Paired
22 Two-sample equal variance (homoscedastic)
33 Two-sample unequal variance (heteroscedastic)
-

The values can be entered manually or included into the cell you make reference to.

-

To apply the TTEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the TTEST function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TTEST Function

+

Notes

+

How to apply the TTEST function.

+ +

Examples

+

The figure below displays the result returned by the TTEST function.

+

TTEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm index 308ae1546c..7f74fa815b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm @@ -15,14 +15,25 @@

TYPE Function

-

The TYPE function is one of the information functions. It is used to determine the type of the resulting or displayed value.

-

The TYPE function syntax is:

-

TYPE(value)

-

where value is a value to test entered manually or included into the cell you make reference to. Below you will find the possible values and the result that TYPE returns:

+

The TYPE function is one of the information functions. It is used to determine the type of the resulting or displayed value.

+

Syntax

+

TYPE(value)

+

The TYPE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
valueA value to test. The possible values are listed in the table below.
+

The value argument can be one of the following:

- - + + @@ -45,20 +56,12 @@
ValueResultValueResult
number64
-

To apply the TYPE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Information function group from the list,
  6. -
  7. click the TYPE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

TYPE Function

+

Notes

+

How to apply the TYPE function.

+ +

Examples

+

The figure below displays the result returned by the TYPE function.

+

TYPE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm index d73781dd8c..d2e7f502d2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm @@ -15,25 +15,27 @@

UNICHAR Function

-

The UNICHAR function is one of the text and data functions. Is used to return the Unicode character that is referenced by the given numeric value.

-

The UNICHAR function syntax is:

-

UNICHAR(number)

-

where number is the Unicode number that represents the character. It can be entered manually or included into the cell you make reference to.

-

To apply the UNICHAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the UNICHAR function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

UNICHAR Function

+

The UNICHAR function is one of the text and data functions. Is used to return the Unicode character that is referenced by the given numeric value.

+

Syntax

+

UNICHAR(number)

+

The UNICHAR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
numberThe Unicode number that represents the character.
+ +

Notes

+

How to apply the UNICHAR function.

+ +

Examples

+

The figure below displays the result returned by the UNICHAR function.

+

UNICHAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm index 62f006047a..96e41df1b2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm @@ -15,25 +15,26 @@

UNICODE Function

-

The UNICODE function is one of the text and data functions. Is used to return the number (code point) corresponding to the first character of the text.

-

The UNICODE function syntax is:

-

UNICODE(text)

-

where text is the text string beginning with the character you want to get the Unicode value for. It can be entered manually or included into the cell you make reference to.

-

To apply the UNICODE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the UNICODE function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

UNICODE Function

+

The UNICODE function is one of the text and data functions. Is used to return the number (code point) corresponding to the first character of the text.

+

Syntax

+

UNICODE(text)

+

The UNICODE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text string beginning with the character you want to get the Unicode value for.
+

Notes

+

How to apply the UNICODE function.

+ +

Examples

+

The figure below displays the result returned by the UNICODE function.

+

UNICODE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/unique.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/unique.htm index 2c39632208..9d00d30a48 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/unique.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/unique.htm @@ -15,30 +15,35 @@

UNIQUE Function

-

The UNIQUE function is one of the reference functions. It is used to return a list of unique values from the specified range.

-

The UNIQUE function syntax is:

-

UNIQUE(array,[by_col],[exactly_once])

-

where

-

array is the range from which to extract unique values.

-

by_col is the optional TRUE or FALSE value indicating the method of comparison: TRUE for columns and FALSE for rows.

-

exactly_once is the optional TRUE or FALSE value indicating the returning method: TRUE for values occurring once and FALSE for all unique values.

- -

To apply the UNIQUE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Look up and reference function group from the list,
  6. -
  7. click the UNIQUE function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

To return a range of values, select a required range of cells, enter the formula, and press the Ctrl+Shift+Enter key combination.

-

UNIQUE Function

+

The UNIQUE function is one of the lookup and reference functions. It is used to return a list of unique values from the specified range.

+

Syntax

+

UNIQUE(array, [by_col], [exactly_once])

+

The UNIQUE function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe range from which to extract unique values.
by_colThe optional TRUE or FALSE value indicating the method of comparison: TRUE for columns and FALSE for rows.
exactly_onceThe optional TRUE or FALSE value indicating the returning method: TRUE for values occurring once and FALSE for all unique values.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the UNIQUE function.

+ +

Examples

+

The figure below displays the result returned by the UNIQUE function.

+

UNIQUE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm index f1f2a4d413..3d131a50b3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm @@ -15,25 +15,26 @@

UPPER Function

-

The UPPER function is one of the text and data functions. Is used to convert lowercase letters to uppercase in the selected cell.

-

The UPPER function syntax is:

-

UPPER(text)

-

where text is a text data included into the cell you make reference to.

-

To apply the UPPER function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the UPPER function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

UPPER Function

+

The UPPER function is one of the text and data functions. Is used to convert lowercase letters to uppercase in the selected cell.

+

Syntax

+

UPPER(text)

+

The UPPER function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textThe text you want to convert to uppercase.
+

Notes

+

How to apply the UPPER function.

+ +

Examples

+

The figure below displays the result returned by the UPPER function.

+

UPPER Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm index 118d03f1e7..93976d8c75 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm @@ -15,25 +15,27 @@

VALUE Function

-

The VALUE function is one of the text and data functions. Is used to convert a text value that represents a number to a number. If the converted text is not a number, the function will return a #VALUE! error.

-

The VALUE function syntax is:

-

VALUE(string)

-

where string is text data that represents a number entered manually or included into the cell you make reference to.

-

To apply the VALUE function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Text and data function group from the list,
  6. -
  7. click the VALUE function,
  8. -
  9. enter the required argument, -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VALUE Function

+

The VALUE function is one of the text and data functions. Is used to convert a text value that represents a number to a number. If the converted text is not a number, the function will return a #VALUE! error.

+

Syntax

+

VALUE(text)

+

The VALUE function has the following argument:

+ + + + + + + + + +
ArgumentDescription
textText data that represents a number.
+ +

Notes

+

How to apply the VALUE function.

+ +

Examples

+

The figure below displays the result returned by the VALUE function.

+

VALUE Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm index 17ac187986..76dba5ec1a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm @@ -15,25 +15,27 @@

VAR.P Function

-

The VAR.P function is one of the statistical functions. It is used to calculate variance based on the entire population (ignores logical values and text in the population).

-

The VAR.P function syntax is:

-

VAR.P(number1 [, number2], ...)

-

where number1(2) is up to 254 numerical values entered manually or included into the cells you make reference to.

-

Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

-

To apply the VAR.P function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the VAR.P function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VAR.P Function

+

The VAR.P function is one of the statistical functions. It is used to calculate variance based on the entire population (ignores logical values and text in the population).

+

Syntax

+

VAR.P(number1, [number2], ...)

+

The VAR.P function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the variance.
+

Notes

+

Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

+

How to apply the VAR.P function.

+ +

Examples

+

The figure below displays the result returned by the VAR.P function.

+

VAR.P Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm index bf6f60c231..8812d83d95 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm @@ -15,25 +15,27 @@

VAR.S Function

-

The VAR.S function is one of the statistical functions. It is used to estimate variance based on a sample (ignores logical values and text in the sample).

-

The VAR.S function syntax is:

-

VAR.S(number1 [, number2], ...)

-

where number1(2) is up to 254 numerical values entered manually or included into the cells you make reference to.

-

Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

-

To apply the VAR.S function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the VAR.S function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VAR.S Function

+

The VAR.S function is one of the statistical functions. It is used to estimate variance based on a sample (ignores logical values and text in the sample).

+

Syntax

+

VAR.S(number1, [number2], ...)

+

The VAR.S function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the variance.
+

Notes

+

Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

+

How to apply the VAR.S function.

+ +

Examples

+

The figure below displays the result returned by the VAR.S function.

+

VAR.S Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm index 7fe9ccd05a..2f555653dc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm @@ -15,25 +15,27 @@

VAR Function

-

The VAR function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance.

-

The VAR function syntax is:

-

VAR(argument-list)

-

where argument-list is a set of numerical values entered manually or included into the cells you make reference to.

-

Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

-

To apply the VAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the VAR function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VAR Function

+

The VAR function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance.

+

Syntax

+

VAR(number1, [number2], ...)

+

The VAR function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the variance.
+

Notes

+

Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

+

How to apply the VAR function.

+ +

Examples

+

The figure below displays the result returned by the VAR function.

+

VAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm index 747023ad96..cfefbcd315 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm @@ -15,25 +15,27 @@

VARA Function

-

The VARA function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance.

-

The VARA function syntax is:

-

VARA(argument-list)

-

where argument-list is a set of values entered manually or included into the cells you make reference to.

-

Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

-

To apply the VARA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the VARA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VARA Function

+

The VARA function is one of the statistical functions. It is used to analyze the set of values and calculate the sample variance.

+

Syntax

+

VARA(value1, [value2], ...)

+

The VARA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values for which you want to calculate the variance.
+

Notes

+

Text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

+

How to apply the VARA function.

+ +

Examples

+

The figure below displays the result returned by the VARA function.

+

VARA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm index 3d254088ce..e24d5ae074 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm @@ -15,25 +15,27 @@

VARP Function

-

The VARP function is one of the statistical functions. It is used to analyze the set of values and calculate the variance of an entire population.

-

The VARP function syntax is:

-

VARP(argument-list)

-

where argument-list is a set of numerical values entered manually or included into the cells you make reference to.

-

Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

-

To apply the VARP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the VARP function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VARP Function

+

The VARP function is one of the statistical functions. It is used to analyze the set of values and calculate the variance of an entire population.

+

Syntax

+

VARP(number1, [number2], ...)

+

The VARP function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
number1/2/nUp to 255 numeric values for which you want to calculate the variance.
+

Notes

+

Empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

+

How to apply the VARP function.

+ +

Examples

+

The figure below displays the result returned by the VARP function.

+

VARP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm index afc3bd70f3..ac1d838503 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm @@ -15,25 +15,27 @@

VARPA Function

-

The VARPA function is one of the statistical functions. It is used to analyze the set of values and return the variance of an entire population.

-

The VARPA function syntax is:

-

VARPA(argument-list)

-

where argument-list is a set of values entered manually or included into the cells you make reference to.

-

Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

-

To apply the VARPA function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the VARPA function,
  8. -
  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VARPA Function

+

The VARPA function is one of the statistical functions. It is used to analyze the set of values and return the variance of an entire population.

+

Syntax

+

VARPA(value1, [value2], ...)

+

The VARPA function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
value1/2/nUp to 255 values for which you want to calculate the variance.
+

Notes

+

Text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

+

How to apply the VARPA function.

+ +

Examples

+

The figure below displays the result returned by the VARPA function.

+

VARPA Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm index 2b8893f542..9e0c0e9ef7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm @@ -15,34 +15,52 @@

VDB Function

-

The VDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified or partial accounting period using the variable declining balance method.

-

The VDB function syntax is:

-

VDB(cost, salvage, life, start-period, end-period[, [[factor][, [no-switch-flag]]]]])

-

where

-

cost is the cost of the asset.

-

salvage is the salvage value of the asset at the end of its lifetime.

-

life is the total number of the periods within the asset lifetime.

-

start-period is a starting period you wish to calculate depreciation for. The value must be expressed in the same units as life.

-

end-period is an ending period you wish to calculate depreciation for. The value must be expressed in the same units as life.

-

factor is the rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2.

-

no-switch-flag is the optional argument that specifies whether to use straight-line depreciation when depreciation is greater than the declining balance calculation. If it is set to FALSE or omitted, the function uses the straight-line depreciation method. If it is set to TRUE, the function uses the declining balance method.

-

Note: all the numeric values must be positive numbers.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the VDB function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the VDB function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VDB Function

+

The VDB function is one of the financial functions. It is used to calculate the depreciation of an asset for a specified or partial accounting period using the variable declining balance method.

+

Syntax

+

VDB(cost, salvage, life, start_period, end_period, [factor], [no_switch])

+

The VDB function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
costThe cost of the asset.
salvageThe salvage value of the asset at the end of its lifetime.
lifeThe total number of the periods within the asset lifetime.
start_periodA starting period you wish to calculate depreciation for. The value must be expressed in the same units as life.
end_periodAn ending period you wish to calculate depreciation for. The value must be expressed in the same units as life.
factorThe rate at which the balance declines. It is an optional argument. If it is omitted, the function will assume factor to be 2.
no_switchThe optional argument that specifies whether to use straight-line depreciation when depreciation is greater than the declining balance calculation. If it is set to FALSE or omitted, the function uses the straight-line depreciation method. If it is set to TRUE, the function uses the declining balance method.
+ +

Notes

+

All the numeric values must be positive numbers.

+

How to apply the VDB function.

+ +

Examples

+

The figure below displays the result returned by the VDB function.

+

VDB Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm index b216905b31..4acf34afab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm @@ -15,29 +15,40 @@

VLOOKUP Function

-

The VLOOKUP function is one of the lookup and reference functions. It is used to perform the vertical search for a value in the left-most column of a table or an array and return the value in the same row based on a specified column index number.

-

The VLOOKUP function syntax is:

-

VLOOKUP (lookup-value, table-array, col-index-num[, [range-lookup-flag]])

-

where

-

lookup-value is a value to search for.

-

table-array is two or more columns containing data sorted in ascending order.

-

col-index-num is a column number in the table-array, a numeric value greater than or equal to 1 but less than the number of columns in the table-array

-

range-lookup-flag is a logical value TRUE or FALSE. It is an optional argument. Enter FALSE to find an exact match. Enter TRUE or omit this argument to find an approximate match, in this case if there is not a value that strictly matches the lookup-value, then the function will choose the next largest value less than the lookup-value. -

Note: if the range-lookup-flag is set to FALSE, but no exact match is found, then the function will return the #N/A error.

-

To apply the VLOOKUP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the VLOOKUP function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

VLOOKUP Function

+

The VLOOKUP function is one of the lookup and reference functions. It is used to perform the vertical search for a value in the left-most column of a table or an array and return the value in the same row based on a specified column index number.

+

Syntax

+

VLOOKUP (lookup_value, table_array, col_index_num, [range_lookup])

+

The VLOOKUP function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
lookup_valueA value to search for.
table_arrayTwo or more columns containing data sorted in ascending order.
col_index_numA column number in the table_array, a numeric value greater than or equal to 1 but less than the number of columns in the table_array.
range_lookupA logical value TRUE or FALSE. It is an optional argument. Enter FALSE to find an exact match. Enter TRUE or omit this argument to find an approximate match, in this case if there is not a value that strictly matches the lookup_value, then the function will choose the next largest value less than the lookup_value.
+ +

Notes

+

If the range_lookup is set to FALSE, but no exact match is found, then the function will return the #N/A error.

+

How to apply the VLOOKUP function.

+ +

Examples

+

The figure below displays the result returned by the VLOOKUP function.

+

VLOOKUP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vstack.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vstack.htm index d01293050b..39c56ca22a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vstack.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vstack.htm @@ -15,27 +15,27 @@

VSTACK Function

-

The VSTACK function is one of the lookup and reference functions. It is used to vertically stack arrays into one array.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The VSTACK function syntax is:

-

VSTACK (array1, [array2], ...)

-

where

-

array is used to set the arrays to append.

-

To apply the VSTACK function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the VSTACK function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The VSTACK function is one of the lookup and reference functions. It is used to vertically stack arrays into one array.

+

Syntax

+

VSTACK (array1, [array2], ...)

+

The VSTACK function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
array1/2/nIs used to set the arrays to append.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the VSTACK function.

+ +

Examples

+

The figure below displays the result returned by the VSTACK function.

+

VSTACK Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm index c6b4d02970..ee4be01ac2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm @@ -15,43 +15,49 @@

WEEKDAY Function

-

The WEEKDAY function is one of the date and time functions. It is used to determine which day of the week the specified date is.

-

The WEEKDAY function syntax is:

-

WEEKDAY(serial-value [,weekday-start-flag])

-

where

-

serial-value is a number representing the date of the day you are trying to find, entered using the Date function or other date and time function.

-

weekday-start-flag is a numeric value used to determine the type of the value to be returned. It can be one of the following:

+

The WEEKDAY function is one of the date and time functions. It is used to determine which day of the week the specified date is.

+

Syntax

+

WEEKDAY(serial_number, [return_type])

+

The WEEKDAY function has the following arguments:

+ + + + + + + + + + + + + +
ArgumentDescription
serial_numberA number representing the date of the day you are trying to find, entered using the DATE function or other date and time function.
return_typeA numeric value used to determine the type of the value to be returned. The possible values are listed in the table below.
+

The return_type argument can be one of the following:

- - + + - + - + - +
Numeric valueExplanationNumeric valueExplanation
1 or omitted1 or omitted Returns a number from 1 (Sunday) to 7 (Saturday)
22 Returns a number from 1 (Monday) to 7 (Sunday).
33 Returns a number from 0 (Monday) to 6 (Sunday).
-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the WEEKDAY function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

WEEKDAY Function

+

Notes

+

How to apply the WEEKDAY function.

+ +

Examples

+

The figure below displays the result returned by the WEEKDAY function.

+

WEEKDAY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm index 9508e72e5a..ac3d2345a2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm @@ -15,85 +15,90 @@

WEEKNUM Function

-

The WEEKNUM function is one of the date and time functions. It used to return the number of the week the specified date falls within the year.

-

The WEEKNUM function syntax is:

-

WEEKNUM(serial_number, [return_type])

-

where

-

serial_number is a number representing the date within the week, entered using the Date function or other date and time function.

-

return_type is a numeric value used to determine on which day the week begins. It can be one of the following:

+

The WEEKNUM function is one of the date and time functions. It used to return the number of the week the specified date falls within the year.

+

Syntax

+

WEEKNUM(serial_number, [return_type])

+

The WEEKNUM function has the following arguments:

+ + + + + + + + - - - + + + +
ArgumentDescription
serial_numberA number representing the date within the week, entered using the DATE function or other date and time function.
Numeric valueWeek begins onSystemreturn_typeA numeric value used to determine on which day the week begins. The possible values are listed in the table below.
+

The return_type argument can be one of the following:

+ + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
Numeric valueWeek begins onSystem
1 or omitted1 or omitted Sunday11
22 Monday11
1111 Monday11
1212 Tuesday11
1313 Wednesday11
1414 Thursday11
1515 Friday11
1616 Saturday11
1717 Sunday11
2121 Monday22
+

Notes

When return_type is set to 1-17, System 1 is used. This means that the first week in a year is the week that contains January 1.

-

When return_type is set to 21, System 2 is used. This means that the first week in a year is the week that contains the first Thursday of the year. System 2 is commonly used in Europe according to the ISO 8601 standard.

-

To apply the WEEKNUM function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the WEEKNUM function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

WEEKNUM Function

+

When return_type is set to 21, System 2 is used. This means that the first week in a year is the week that contains the first Thursday of the year. System 2 is commonly used in Europe according to the ISO 8601 standard.

+

How to apply the WEEKNUM function.

+ +

Examples

+

The figure below displays the result returned by the WEEKNUM function.

+

WEEKNUM Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm index af0b345978..15bd1e3a37 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm @@ -15,29 +15,38 @@

WEIBULL.DIST Function

-

The WEIBULL.DIST function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure.

-

The WEIBULL.DIST function syntax is:

-

WEIBULL.DIST(x, alpha, beta, cumulative)

-

where

-

x is the value between at which the function should be calculated, a numeric value greater than or equal to 0.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the WEIBULL.DIST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the WEIBULL.DIST function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

WEIBULL.DIST Function

+

The WEIBULL.DIST function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure.

+

Syntax

+

WEIBULL.DIST(x, alpha, beta, cumulative)

+

The WEIBULL.DIST function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value between at which the function should be calculated, a numeric value greater than or equal to 0.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+

Notes

+

How to apply the WEIBULL.DIST function.

+ +

Examples

+

The figure below displays the result returned by the WEIBULL.DIST function.

+

WEIBULL.DIST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm index 1a49c905dc..b91d8f0496 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm @@ -15,29 +15,38 @@

WEIBULL Function

-

The WEIBULL function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure.

-

The WEIBULL function syntax is:

-

WEIBULL(x, alpha, beta, cumulative)

-

where

-

x is the value between at which the function should be calculated, a numeric value greater than or equal to 0.

-

alpha is the first parameter of the distribution, a numeric value greater than 0.

-

beta is the second parameter of the distribution, a numeric value greater than 0.

-

cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

-

The values can be entered manually or included into the cells you make reference to.

-

To apply the WEIBULL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the WEIBULL function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

WEIBULL Function

+

The WEIBULL function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure.

+

Syntax

+

WEIBULL(x, alpha, beta, cumulative)

+

The WEIBULL function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
xThe value between at which the function should be calculated, a numeric value greater than or equal to 0.
alphaThe first parameter of the distribution, a numeric value greater than 0.
betaThe second parameter of the distribution, a numeric value greater than 0.
cumulativeA logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.
+

Notes

+

How to apply the WEIBULL function.

+ +

Examples

+

The figure below displays the result returned by the WEIBULL function.

+

WEIBULL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm index 09d01efe3d..b6a0a892bc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm @@ -15,91 +15,102 @@

WORKDAY.INTL Function

-

The WORKDAY.INTL function is one of the date and time functions. It is used to return the date before or after a specified number of workdays with custom weekend parameters; weekend parameters indicate which and how many days are weekend days.

-

The WORKDAY.INTL function syntax is:

-

WORKDAY.INTL(start_date, days, [, weekend], [, holidays])

-

where

-

start_date is the first date of the period entered using the Date function or other date and time function.

-

days is a number of workdays before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date.

-

weekend is an optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below.

- +

The WORKDAY.INTL function is one of the date and time functions. It is used to return the date before or after a specified number of workdays with custom weekend parameters; weekend parameters indicate which and how many days are weekend days.

+

Syntax

+

WORKDAY.INTL(start_date, days, [weekend], [holidays])

+

The WORKDAY.INTL function has the following arguments:

+
- - + + - + + + + + + + + + + + + + + + +
NumberWeekend daysArgumentDescription
1 or omittedstart_dateThe first date of the period entered using the DATE function or other date and time function.
daysA number of nonweekend before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date.
weekendAn optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below.
holidaysAn optional argument that specifies which dates besides weekends are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates.
+

The weekend argument can be one of the following:

+ + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - +
NumberWeekend days
1 or omitted Saturday, Sunday
22 Sunday, Monday
33 Monday, Tuesday
44 Tuesday, Wednesday
55 Wednesday, Thursday
66 Thursday, Friday
77 Friday, Saturday
1111 Sunday only
1212 Monday only
1313 Tuesday only
1414 Wednesday only
1515 Thursday only
1616 Friday only
1717 Saturday only
-

A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. "0000011" specifies that weekend days are Saturday and Sunday. The string "1111111" is not valid.

-

holidays is an optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

-

To apply the WORKDAY.INTL function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the WORKDAY.INTL function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

WORKDAY.INTL Function

+

Notes

+

A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. "0000011" specifies that weekend days are Saturday and Sunday. The string "1111111" is not valid.

+

How to apply the WORKDAY.INTL function.

+ +

Examples

+

The figure below displays the result returned by the WORKDAY.INTL function.

+

WORKDAY.INTL Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm index 9b94320127..fab6364021 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm @@ -15,27 +15,34 @@

WORKDAY Function

-

The WORKDAY function is one of the date and time functions. It is used to return the date which comes the indicated number of days (day-offset) before or after the specified start date excluding weekends and dates considered as holidays.

-

The WORKDAY function syntax is:

-

WORKDAY(start-day, day-offset [,holidays])

-

where

-

start-day is the first date of the period entered using the Date function or other date and time function.

-

day-offset is a number of nonweekend before or after start-day. If the day-offset has the negative sign, the function will return the date which comes before the specified start-date. If the day-offset has the positive sign, the function will return the date which follows after the specified start-date.

-

holidays is an optional argument that specifies which dates besides weekends are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

-

To apply the WORKDAY function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the WORKDAY function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

WORKDAY Function

+

The WORKDAY function is one of the date and time functions. It is used to return the date which comes the indicated number of days (day-offset) before or after the specified start date excluding weekends and dates considered as holidays.

+

Syntax

+

WORKDAY(start_date, days, [holidays])

+

The WORKDAY function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
start_dateThe first date of the period entered using the DATE function or other date and time function.
daysA number of nonweekend before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date.
holidaysAn optional argument that specifies which dates besides weekends are nonworking. You can enter them using the DATE function or other date and time function or specify a reference to a range of cells containing dates.
+

Notes

+

How to apply the WORKDAY function.

+ +

Examples

+

The figure below displays the result returned by the WORKDAY function.

+

WORKDAY Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/wrapcols.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/wrapcols.htm index dd75b1aa72..b2f891f0b3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/wrapcols.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/wrapcols.htm @@ -15,29 +15,35 @@

WRAPCOLS Function

-

The WRAPCOLS function is one of the lookup and reference functions. It is used to wrap a row or column vector after a specified number of values.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The WRAPCOLS function syntax is:

-

WRAPCOLS(vector, wrap_count, [pad_with])

-

where

-

vector is used to set the vector or reference to wrap.

-

wrap_count is used to set the maximum number of values for each column.

-

pad_with is used to set the value with which to pad. Defaults to #N/A.

-

To apply the WRAPCOLS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the WRAPCOLS function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The WRAPCOLS function is one of the lookup and reference functions. It is used to wrap a row or column vector by columns after a specified number of values.

+

Syntax

+

WRAPCOLS(vector, wrap_count, [pad_with])

+

The WRAPCOLS function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
vectorIs used to set the vector or reference to wrap.
wrap_countIs used to set the maximum number of values for each column.
pad_withIs used to set the value with which to pad. Defaults to #N/A.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the WRAPCOLS function.

+ +

Examples

+

The figure below displays the result returned by the WRAPCOLS function. It wraps the row in range A1:F1 to an array in range A3:C5 by columns.

+

WRAPCOLS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/wraprows.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/wraprows.htm index 81e3dd87e4..f2acb15690 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/wraprows.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/wraprows.htm @@ -15,29 +15,35 @@

WRAPROWS Function

-

The WRAPROWS function is one of the lookup and reference functions. It is used to wrap a row or column vector after a specified number of values.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The WRAPROWS function syntax is:

-

WRAPROWS(vector, wrap_count, [pad_with])

-

where

-

vector is used to set the vector or reference to wrap.

-

wrap_count is used to set the maximum number of values for each row.

-

pad_with is used to set the value with which to pad. Defaults to #N/A.

-

To apply the WRAPROWS function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the WRAPROWS function,
  8. -
  9. enter the required arguments separating them by comma,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

The WRAPROWS function is one of the lookup and reference functions. It is used to wrap a row or column vector by rows after a specified number of values.

+

Syntax

+

WRAPROWS(vector, wrap_count, [pad_with])

+

The WRAPROWS function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
vectorIs used to set the vector or reference to wrap.
wrap_countIs used to set the maximum number of values for each row.
pad_withIs used to set the value with which to pad. Defaults to #N/A.
+

Notes

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the WRAPROWS function.

+ +

Examples

+

The figure below displays the result returned by the WRAPROWS function. It wraps the row in range A1:F1 to an array in range A3:C5 by rows.

+

WRAPROWS Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm index 725aabd61e..7e9c3d3ab6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm @@ -15,29 +15,34 @@

XIRR Function

-

The XIRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of irregular cash flows.

-

The XIRR function syntax is:

-

XIRR(values, dates [,[guess]])

-

where

-

values is an array that contains the series of payments occuring irregularly. At least one of the values must be negative and at least one positive.

-

dates is an array that contains the payment dates when the payments are made or received. Dates must be entered by using the DATE function.

-

guess is an estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%.

+

The XIRR function is one of the financial functions. It is used to calculate the internal rate of return for a series of irregular cash flows.

+

Syntax

+

XIRR(values, dates, [guess])

+

The XIRR function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
valuesAn array that contains the series of payments occuring irregularly. At least one of the values must be negative and at least one positive.
datesAn array that contains the payment dates when the payments are made or received. Dates must be entered by using the DATE function.
guessAn estimate at what the internal rate of return will be. It is an optional argument. If it is omitted, the function will assume guess to be 10%.
+

Notes

+

How to apply the XIRR function.

-

The numeric values can be entered manually or included into the cell you make reference to.

-

To apply the XIRR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the XIRR function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

XIRR Function

+

Examples

+

The figure below displays the result returned by the XIRR function.

+

XIRR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xlookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xlookup.htm index f06540b042..75e7819f83 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xlookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xlookup.htm @@ -15,48 +15,96 @@

XLOOKUP Function

-

The XLOOKUP function is one of the lookup and reference functions. It is used to perform the search for a specific item by row both horizontally and vertically. The result is returned in another column and can accommodate two-dimensional datasets.

-

The XLOOKUP function syntax is:

-

XLOOKUP (lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])

-

where

-

lookup_value is a value to search for.

-

lookup_array is an array or range to search in.

-

return_array is an array or range to return the results to.

-

if_not_found is an optional argument. If there is no search result, the argument returns the text stated in [if_not_found]. In case the text is not specified, the “N/A” is returned.

-

match_mode is an optional argument. The following values are available: -

-

-

search_mode is an optional argument. The following values are available: -

-

-

+

The XLOOKUP function is one of the lookup and reference functions. It is used to perform the search for a specific item by row both horizontally and vertically. The result is returned in another column and can accommodate two-dimensional datasets.

+

Syntax

+

XLOOKUP (lookup_value, lookup_array, return_array, [if_not_found], [match_mode], [search_mode])

+

The XLOOKUP function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
lookup_valueA value to search for.
lookup_arrayAn array or range to search in.
return_arrayAn array or range to return the results to.
if_not_foundAn optional argument. If there is no search result, the argument returns the text stated in [if_not_found]. In case the text is not specified, the “N/A” is returned.
match_modeAn optional argument. The possible values are listed in the table below.
search_modeAn optional argument. The possible values are listed in the table below.
+

The match_mode argument can be one of the following:

+ + + + + + + + + + + + + + + + + + + + + +
ValueDescription
0Set by default. Returns the exact match; if there is no match, the “N/A” is returned instead.
-1Returns the exact match; if there is none, the next smaller item is returned.
1Returns the exact match; if there is none, the next larger item is returned.
2A wildcard match.
+

The search_mode argument can be one of the following:

+ + + + + + + + + + + + + + + + + + + + + +
ValueDescription
1Set by default. Starts a search at the first item.
-1Starts a reverse search, i.e. at the last item.
2Starts a binary search with the lookup_array sorted in ascending order. If not sorted, invalid results will be returned.
-2Starts a binary search with the lookup_array sorted in descending order. If not sorted, invalid results will be returned.
+

Notes

+

Wildcard characters include the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.

-

To apply the XLOOKUP function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the XLOOKUP function,
  8. -
  9. enter the required arguments in the Function Arguments window,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

XLOOKUP Function

+

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the XLOOKUP function.

+ +

Examples

+

The figure below displays the result returned by the XLOOKUP function.

+

XLOOKUP Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xmatch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xmatch.htm index 7fed48012d..4860446cea 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xmatch.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xmatch.htm @@ -15,49 +15,88 @@

XMATCH Function

-

The XMATCH function is one of the lookup and reference functions. It is used to return the relative position of an item in an array. By default, an exact match is required.

-

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

-

The XMATCH function syntax is:

-

=XMATCH(lookup_value, lookup_array, [match_mode], [search_mode])

-

where

-

lookup_value is a value to search for.

-

lookup_array is an array or range to search in.

-

- match_mode is an optional argument. The following values are available: -

-

-

- search_mode is an optional argument. The following values are available: -

-

-

+

The XMATCH function is one of the lookup and reference functions. It is used to return the relative position of an item in an array. By default, an exact match is required.

+

Syntax

+

XMATCH(lookup_value, lookup_array, [match_mode], [search_mode])

+

The XMATCH function has the following arguments:

+ + + + + + + + + + + + + + + + + + + + + +
ArgumentDescription
lookup_valueA value to search for.
lookup_arrayAn array or range to search in.
match_modeAn optional argument. The possible values are listed in the table below.
search_modeAn optional argument. The possible values are listed in the table below.
+

The match_mode argument can be one of the following:

+ + + + + + + + + + + + + + + + + + + + + +
ValueDescription
0Set by default. Returns the exact match; if there is no match, the “N/A” is returned instead.
-1Returns the exact match; if there is none, the next smaller item is returned.
1Returns the exact match; if there is none, the next larger item is returned.
2A wildcard match.
+

The search_mode argument can be one of the following:

+ + + + + + + + + + + + + + + + + + + + + +
ValueDescription
1Set by default. Starts a search at the first item.
-1Starts a reverse search, i.e. at the last item.
2Starts a binary search with the lookup_array sorted in ascending order. If not sorted, invalid results will be returned.
-2Starts a binary search with the lookup_array sorted in descending order. If not sorted, invalid results will be returned.
+

Notes

+

Wildcard characters include the question mark (?) that matches a single character and the asterisk (*) that matches multiple characters. If you want to find a question mark or asterisk, type a tilde (~) before the character.

-

To apply the XMATCH function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Lookup and Reference function group from the list,
  6. -
  7. click the XMATCH function,
  8. -
  9. enter the required arguments in the Function Arguments window,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

- +

Please note that this is an array formula. To learn more, please read the Insert array formulas article.

+

How to apply the XMATCH function.

+ +

Examples

+

The figure below displays the result returned by the XMATCH function.

+

XMATCH Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm index ecffb71f49..e4812403b6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm @@ -15,28 +15,34 @@

XNPV Function

-

The XNPV function is one of the financial functions. It is used to calculate the net present value for an investment based on a specified interest rate and a schedule of irregular payments.

-

The XNPV function syntax is:

-

XNPV(rate, values, dates)

-

where

-

rate is the discount rate for the investment.

-

values is an array that contains the income (positive values) or payment (negative values) amounts. At least one of the values must be negative and at least one positive.

-

dates is an array that contains the payment dates when the payments are made or received.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the XNPV function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the XNPV function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

XNPV Function

+

The XNPV function is one of the financial functions. It is used to calculate the net present value for an investment based on a specified interest rate and a schedule of irregular payments.

+

Syntax

+

XNPV(rate, values, dates)

+

The XNPV function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
rateThe discount rate for the investment.
valuesAn array that contains the income (positive values) or payment (negative values) amounts. At least one of the values must be negative and at least one positive.
datesAn array that contains the payment dates when the payments are made or received.
+

Notes

+

How to apply the XNPV function.

+ +

Examples

+

The figure below displays the result returned by the XNPV function.

+

XNPV Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm index 065caf5e76..9c1d6b705e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm @@ -15,30 +15,29 @@

XOR Function

-

The XOR function is one of the logical functions. It is used to return a logical Exclusive Or of all arguments. The function returns TRUE when the number of TRUE inputs is odd and FALSE when the number of TRUE inputs is even.

-

The XOR function syntax is:

-

XOR(logical1 [, logical2], ...)

-

where logical1 is a value entered manually or included into the cell you make reference to.

-

To apply the XOR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Logical function group from the list,
  6. -
  7. click the XOR function,
  8. -
  9. enter the required arguments separating them by commas, -

    Note: you can enter up to 254 logical values.

    -
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

For example:

-

There are two arguments: logical1 = 1>0, logical2 = 2>0. The number of TRUE inputs is even, so the function returns FALSE.

-

XOR Function: FALSE

+

The XOR function is one of the logical functions. It is used to return a logical Exclusive Or of all arguments. The function returns TRUE when the number of TRUE inputs is odd and FALSE when the number of TRUE inputs is even.

+

Syntax

+

XOR(logical1, [logical2], ...)

+

The XOR function has the following arguments:

+ + + + + + + + + +
ArgumentDescription
logical1/2/nA condition that you want to check if it is TRUE or FALSE
+

Notes

+

You can enter up to 255 logical values.

+

How to apply the XOR function.

+ +

Examples

+

There are two arguments: logical1 = 1>0, logical2 = 2>0. The number of TRUE inputs is even, so the function returns FALSE.

+

XOR Function: FALSE

There are two arguments: logical1 = 1>0, logical2 = 2<0. The number of TRUE inputs is odd, so the function returns TRUE.

-

XOR Function: TRUE

+

XOR Function: TRUE

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm index 75f868a43e..ef8ef7fa62 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm @@ -15,24 +15,26 @@

YEAR Function

-

The YEAR function is one of the date and time functions. It returns the year (a number from 1900 to 9999) of the date given in the numerical format (MM/dd/yyyy by default).

-

The YEAR function syntax is:

-

YEAR(date-value)

-

where date-value is a value entered manually or included into the cell you make reference to.

-

To apply the YEAR function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the YEAR function,
  8. -
  9. enter the required argument,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

YEAR Function

+

The YEAR function is one of the date and time functions. It returns the year (a number from 1900 to 9999) of the date given in the numerical format (MM/dd/yyyy by default).

+

Syntax

+

YEAR(serial_number)

+

The YEAR function has the following argument:

+ + + + + + + + + +
ArgumentDescription
serial_numberThe date of the year you want to find.
+

Notes

+

How to apply the YEAR function.

+ +

Examples

+

The figure below displays the result returned by the YEAR function.

+

YEAR Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm index db72b80dbe..e4b58519c8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm @@ -15,55 +15,63 @@

YEARFRAC Function

-

The YEARFRAC function is one of the date and time functions. It is used to return the fraction of a year represented by the number of whole days from start-date to end-date calculated on the specified basis.

-

The YEARFRAC function syntax is:

-

YEARFRAC(start-date, end-date [,basis])

-

where

-

start-date is a number representing the first date of the period, entered using the Date function or other date and time function.

-

end-date is a number representing the last date of the period, entered using the Date function or other date and time function.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It can be one of the following:

+

The YEARFRAC function is one of the date and time functions. It is used to return the fraction of a year represented by the number of whole days from start-date to end-date calculated on the specified basis.

+

Syntax

+

YEARFRAC(start_date, end_date, [basis])

+

The YEARFRAC function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
start_dateA number representing the first date of the period, entered using the DATE function or other date and time function.
end_dateA number representing the last date of the period, entered using the DATE function or other date and time function.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. The possible values are listed in the table below.
+

The basis argument can be one of the following:

- - + + - + - + - + - + - +
Numeric valueCount basisNumeric valueCount basis
00 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: if the start-date, end-date or basis is a decimal value, the function will ignore the numbers to the right of the decimal point. +

Notes

+

If the start_date, end_date or basis is a decimal value, the function will ignore the numbers to the right of the decimal point.

-

To apply the YEARFRAC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Date and time function group from the list,
  6. -
  7. click the YEARFRAC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

YEARFRAC Function

+

How to apply the YEARFRAC function.

+ +

Examples

+

The figure below displays the result returned by the YEARFRAC function.

+

YEARFRAC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm index 5e2d84fac5..bf12c01a9e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm @@ -15,60 +15,79 @@

YIELD Function

-

The YIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest.

-

The YIELD function syntax is:

-

YIELD(settlement, maturity, rate, pr, redemption, frequency[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

rate is the annual coupon rate of the security.

-

pr is the purchase price of the security, per $100 par value.

-

redemption is the redemption value of the security, per $100 par value.

-

frequency is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The YIELD function is one of the financial functions. It is used to calculate the yield of a security that pays periodic interest.

+

Syntax

+

YIELD(settlement, maturity, rate, pr, redemption, frequency, [basis])

+

The YIELD function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
rateThe annual coupon rate of the security.
prThe purchase price of the security, per $100 par value.
redemptionThe redemption value of the security, per $100 par value.
frequencyThe number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the YIELD function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the YIELD function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

YIELD Function

+

Notes

+

Dates must be entered by using the DATE function.

+ +

How to apply the YIELD function.

+ +

Examples

+

The figure below displays the result returned by the YIELD function.

+

YIELD Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm index 79ae046c0a..2227048a28 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm @@ -15,58 +15,70 @@

YIELDDISC Function

-

The YIELDDISC function is one of the financial functions. It is used to calculate the annual yield of a discounted security.

-

The YIELDDISC function syntax is:

-

YIELDDISC(settlement, maturity, pr, redemption,[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

pr is the purchase price of the security, per $100 par value.

-

redemption is the redemption value of the security, per $100 par value.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The YIELDDISC function is one of the financial functions. It is used to calculate the annual yield of a discounted security.

+

Syntax

+

YIELDDISC(settlement, maturity, pr, redemption, [basis])

+

The YIELDDISC function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
prThe purchase price of the security, per $100 par value.
redemptionThe redemption value of the security, per $100 par value.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the YIELDDISC function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the YIELDDISC function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

YIELDDISC Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the YIELDDISC function.

+ +

Examples

+

The figure below displays the result returned by the YIELDDISC function.

+

YIELDDISC Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm index d5b72d9471..e5978f2c6c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm @@ -15,59 +15,74 @@

YIELDMAT Function

-

The YIELDMAT function is one of the financial functions. It is used to calculate the annual yield of a security that pays interest at maturity.

-

The YIELDMAT function syntax is:

-

YIELDMAT(settlement, maturity, issue, rate, pr[, [basis]])

-

where

-

settlement is the date when the security is purchased.

-

maturity is the date when the security expires.

-

issue is the issue date of the security.

-

rate is the interest rate of the security at the issue date.

-

pr is the purchase price of the security, per $100 par value.

-

basis is the day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. It can be one of the following:

+

The YIELDMAT function is one of the financial functions. It is used to calculate the annual yield of a security that pays interest at maturity.

+

Syntax

+

YIELDMAT(settlement, maturity, issue, rate, pr, [basis)

+

The YIELDMAT function has the following arguments:

- - + + - + + + + + + + + + + + + + + + + + + + + + + + +
Numeric valueCount basisArgumentDescription
0settlementThe date when the security is purchased.
maturityThe date when the security expires.
issueThe issue date of the security.
rateThe interest rate of the security at the issue date.
prThe purchase price of the security, per $100 par value.
basisThe day count basis to use, a numeric value greater than or equal to 0, but less than or equal to 4. It is an optional argument. The possible values are listed in the table below.
+

The basis argument can be one of the following:

+ + + + + + + - + - + - + - +
Numeric valueCount basis
0 US (NASD) 30/360
11 Actual/actual
22 Actual/360
33 Actual/365
44 European 30/360
-

Note: dates must be entered by using the DATE function.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the YIELDMAT function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. - click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Financial function group from the list,
  6. -
  7. click the YIELDMAT function,
  8. -
  9. enter the required arguments separating them by commas,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

YIELDMAT Function

+

Notes

+

Dates must be entered by using the DATE function.

+

How to apply the YIELDMAT function.

+ +

Examples

+

The figure below displays the result returned by the YIELDMAT function.

+

YIELDMAT Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm index 0cbdc8131d..675d7cbdba 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm @@ -15,28 +15,34 @@

Z.TEST Function

-

The Z.TEST function is one of the statistical functions. It is used to return the one-tailed P-value of a z-test. For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.

-

The Z.TEST function syntax is:

-

Z.TEST(array, x [, sigma])

-

where

-

array is the range of numeric values against which to test x.

-

x is the value to test.

-

sigma is a population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the Z.TEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the Z.TEST function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

Z.TEST Function

+

The Z.TEST function is one of the statistical functions. It is used to return the one-tailed P-value of a z-test. For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.

+

Syntax

+

Z.TEST(array, x, [sigma])

+

The Z.TEST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of numeric values against which to test x.
xThe value to test.
sigmaA population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used.
+

Notes

+

How to apply the Z.TEST function.

+ +

Examples

+

The figure below displays the result returned by the Z.TEST function.

+

Z.TEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm index 28599f07c9..7a21655645 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm @@ -15,28 +15,34 @@

ZTEST Function

-

The ZTEST function is one of the statistical functions. It is used to return the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.

-

The ZTEST function syntax is:

-

ZTEST(array, x [, sigma])

-

where

-

array is the range of numeric values against which to test x.

-

x is the value to test.

-

sigma is a population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used.

-

The values can be entered manually or included into the cell you make reference to.

-

To apply the ZTEST function,

-
    -
  1. select the cell where you wish to display the result,
  2. -
  3. click the Insert function
    icon situated at the top toolbar, -
    or right-click within a selected cell and select the Insert Function option from the menu, -
    or click the
    icon situated at the formula bar, -
  4. -
  5. select the Statistical function group from the list,
  6. -
  7. click the ZTEST function,
  8. -
  9. enter the required arguments separating by commas or select a range of cells with the mouse,
  10. -
  11. press the Enter button.
  12. -
-

The result will be displayed in the selected cell.

-

ZTEST Function

+

The ZTEST function is one of the statistical functions. It is used to return the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.

+

Syntax

+

ZTEST(array, x, [sigma])

+

The ZTEST function has the following arguments:

+ + + + + + + + + + + + + + + + + +
ArgumentDescription
arrayThe range of numeric values against which to test x.
xThe value to test.
sigmaA population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used.
+

Notes

+

How to apply the ZTEST function.

+ +

Examples

+

The figure below displays the result returned by the ZTEST function.

+

ZTEST Function

\ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/choosecols.png b/apps/spreadsheeteditor/main/resources/help/en/images/choosecols.png new file mode 100644 index 0000000000..fd4537da61 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/choosecols.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chooserows.png b/apps/spreadsheeteditor/main/resources/help/en/images/chooserows.png new file mode 100644 index 0000000000..53c6ca475d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/chooserows.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/delta.png b/apps/spreadsheeteditor/main/resources/help/en/images/delta.png new file mode 100644 index 0000000000..7bb9d835a9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/delta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/drop.png b/apps/spreadsheeteditor/main/resources/help/en/images/drop.png new file mode 100644 index 0000000000..d4cf6b1b2c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/drop.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/gamma.png b/apps/spreadsheeteditor/main/resources/help/en/images/gamma.png new file mode 100644 index 0000000000..360c36bfc9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/gamma.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/hstack.png b/apps/spreadsheeteditor/main/resources/help/en/images/hstack.png new file mode 100644 index 0000000000..0966dd540a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/hstack.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/int.png b/apps/spreadsheeteditor/main/resources/help/en/images/int.png new file mode 100644 index 0000000000..e5922d208d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/int.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/phi.png b/apps/spreadsheeteditor/main/resources/help/en/images/phi.png new file mode 100644 index 0000000000..a6d77f600f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/phi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/pi.png b/apps/spreadsheeteditor/main/resources/help/en/images/pi.png new file mode 100644 index 0000000000..7f907ff71f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/pi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/rand2.png b/apps/spreadsheeteditor/main/resources/help/en/images/rand2.png new file mode 100644 index 0000000000..66cbf6c693 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/rand2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/sqrt.png b/apps/spreadsheeteditor/main/resources/help/en/images/sqrt.png new file mode 100644 index 0000000000..3af81bd642 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/sqrt.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/sum.png b/apps/spreadsheeteditor/main/resources/help/en/images/sum.png new file mode 100644 index 0000000000..b0ebdb6c71 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/sum.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/take.png b/apps/spreadsheeteditor/main/resources/help/en/images/take.png new file mode 100644 index 0000000000..5f542f8a89 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/take.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/tocol.png b/apps/spreadsheeteditor/main/resources/help/en/images/tocol.png new file mode 100644 index 0000000000..1d44ebf815 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/tocol.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/torow.png b/apps/spreadsheeteditor/main/resources/help/en/images/torow.png new file mode 100644 index 0000000000..d4058aec9b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/torow.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/transpose.png b/apps/spreadsheeteditor/main/resources/help/en/images/transpose.png index aea01c530e..1b115f37ae 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/transpose.png and b/apps/spreadsheeteditor/main/resources/help/en/images/transpose.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/vstack.png b/apps/spreadsheeteditor/main/resources/help/en/images/vstack.png new file mode 100644 index 0000000000..f35254c576 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/vstack.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/wrapcols.png b/apps/spreadsheeteditor/main/resources/help/en/images/wrapcols.png new file mode 100644 index 0000000000..5957390aa6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/wrapcols.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/wraprows.png b/apps/spreadsheeteditor/main/resources/help/en/images/wraprows.png new file mode 100644 index 0000000000..a581f3805b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/wraprows.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/xmatch.png b/apps/spreadsheeteditor/main/resources/help/en/images/xmatch.png new file mode 100644 index 0000000000..e949add6ad Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/xmatch.png differ