Continue editing function pages

This commit is contained in:
Svetlana Maleeva 2023-08-09 16:07:16 +03:00
parent 8324f1f70f
commit 7230e910ee
343 changed files with 734 additions and 475 deletions

View File

@ -17,7 +17,7 @@
<h1>ABS Function</h1>
<p>The <b>ABS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to return the absolute value of a number (i.e. the number without its sign).</p>
<h3>Syntax</h3>
<p><b><em>ABS(x)</em></b></p>
<p><b><em>ABS(number)</em></b></p>
<p>The <b>ABS</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
@ -25,14 +25,14 @@
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>x</em></b></td>
<td>A numeric value entered manually or included into the cell you make reference to.</td>
<td><b><em>number</em></b></td>
<td>A numeric value for which you want to get the absolute value.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ABS</b> function.</p>
<h3>Examples</h3>
<p>There is a single argument: <em>x</em> = <b>A1</b> = <b>-123.14</b>. So the function returns <b>123.14</b> (<b>-123.14</b> without its sign).</p>
<p>There is a single argument: <em>number</em> = <b>A1</b> = <b>-123.14</b>. So the function returns <b>123.14</b> (<b>-123.14</b> without its sign).</p>
<p><img alt="ABS Function" src="../images/abs.png" /></p>
</div>
</body>

View File

@ -17,19 +17,51 @@
<h1>ACCRINT Function</h1>
<p>The <b>ACCRINT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the accrued interest for a security that pays periodic interest.</p>
<h3>Syntax</h3>
<p><b><em>ACCRINT(issue, first-interest, settlement, rate, [par], frequency[, [basis]])</em></b></p>
<p><em>where</em></p>
<p><b><em>issue</em></b> is the issue date of the security.</p>
<p><b><em>first-interest</em></b> is the date when the first interest is paid.</p>
<p><b><em>settlement</em></b> is the date when the security is purchased.</p>
<p><b><em>rate</em></b> is the annual coupon rate of the security.</p>
<p><b><em>par</em></b> is the par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</p>
<p><b><em>frequency</em></b> is the number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</p>
<p><b><em>basis</em></b> 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:</p>
<p><b><em>ACCRINT(issue, first_interest, settlement, rate, par, frequency, [basis], [calc_method])</em></b></p>
<p>The <b>ACCRINT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>issue</em></b></td>
<td>The issue date of the security.</td>
</tr>
<tr>
<td><b><em>first_interest</em></b></td>
<td>The date when the first interest is paid.</td>
</tr>
<tr>
<td><b><em>settlement</em></b></td>
<td>The date when the security is purchased.</td>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The annual coupon rate of the security.</td>
</tr>
<tr>
<td><b><em>par</em></b></td>
<td>The par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</td>
</tr>
<tr>
<td><b><em>frequency</em></b></td>
<td>The number of interest payments per year. The possible values are: 1 for annual payments, 2 for semiannual payments, 4 for quarterly payments.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>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. Possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>calc_method</em></b></td>
<td>A logical value that specifies the way to calculate the accrued interest when the <b><em>settlement</em></b> date is later than the <b><em>first_interest</em></b> date. It is an optional argument. TRUE (1) returns the accrued interest from <b><em>issue</em></b> to <b><em>settlement</em></b>. FALSE (0) returns the accrued interest from <b><em>first_interest</em></b> to <b><em>settlement</em></b>. If the argument is omitted, TRUE is used by default.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td>0</td>
@ -52,21 +84,11 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p>To apply the <b>ACCRINT</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>ACCRINT</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACCRINT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACCRINT</b> function.</p>
<p><img alt="ACCRINT Function" src="../images/accrint.png" /></p>
</div>
</body>

View File

@ -17,17 +17,39 @@
<h1>ACCRINTM Function</h1>
<p>The <b>ACCRINTM</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#financial" onclick="onhyperlinkclick(this)">financial functions</a>. It is used to calculate the accrued interest for a security that pays interest at maturity.</p>
<h3>Syntax</h3>
<p><b><em>ACCRINTM(issue, settlement, rate, [[par] [, [basis]]])</em></b></p>
<p><em>where</em></p>
<p><b><em>issue</em></b> is the issue date of the security.</p>
<p><b><em>settlement</em></b> is the maturity date of the security.</p>
<p><b><em>rate</em></b> is the annual interest rate of the security.</p>
<p><b><em>par</em></b> is the par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</p>
<p><b><em>basis</em></b> 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:</p>
<p><b><em>ACCRINTM(issue, settlement, rate, par, [basis])</em></b></p>
<p>The <b>ACCRINTM</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Count basis</b></td>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>issue</em></b></td>
<td>The issue date of the security.</td>
</tr>
<tr>
<td><b><em>settlement</em></b></td>
<td>The maturity date of the security.</td>
</tr>
<tr>
<td><b><em>rate</em></b></td>
<td>The annual interest rate of the security.</td>
</tr>
<tr>
<td><b><em>par</em></b></td>
<td>The par value of the security. It is an optional argument. If it is omitted, the function will assume <b><em>par</em></b> to be $1000.</td>
</tr>
<tr>
<td><b><em>basis</em></b></td>
<td>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. Possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>basis</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Count basis</b></th>
</tr>
<tr>
<td>0</td>
@ -50,21 +72,11 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACCRINTM</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Financial</b> function group from the list,</li>
<li>click the <b>ACCRINTM</b> function,</li>
<li>enter the required arguments separating them by commas,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACCRINTM</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACCRINTM</b> function.</p>
<p><img alt="ACCRINTM Function" src="../images/accrintm.png" /></p>
</div>
</body>

View File

@ -17,21 +17,22 @@
<h1>ACOS Function</h1>
<p>The <b>ACOS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to return the arccosine of a number.</p>
<h3>Syntax</h3>
<p><b><em>ACOS(x)</em></b></p>
<p>where <b><em>x</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOS</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p><b><em>ACOS(number)</em></b></p>
<p>The <b>ACOS</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>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.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOS</b> function.</p>
<p><img alt="ACOS Function" src="../images/acos.png" /></p>
</div>
</body>

View File

@ -17,21 +17,22 @@
<h1>ACOSH Function</h1>
<p>The <b>ACOSH</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to return the inverse hyperbolic cosine of a number.</p>
<h3>Syntax</h3>
<p><b><em>ACOSH(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value greater than or equal to 1 entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOSH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOSH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p><b><em>ACOSH(number)</em></b></p>
<p>The <b>ACOSH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A numeric value greater than or equal to 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOSH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOSH</b> function.</p>
<p><img alt="ACOSH Function" src="../images/acosh.png" /></p>
</div>
</body>

View File

@ -17,21 +17,22 @@
<h1>ACOT Function</h1>
<p>The <b>ACOT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. 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.</p>
<h3>Syntax</h3>
<p><b><em>ACOT(x)</em></b></p>
<p>where <b><em>x</em></b> is the cotangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOT</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p><b><em>ACOT(number)</em></b></p>
<p>The <b>ACOT</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>The cotangent of the angle you wish to find, a numeric value.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOT</b> function.</p>
<p><img alt="ACOT Function" src="../images/acot.png" /></p>
</div>
</body>

View File

@ -17,21 +17,22 @@
<h1>ACOTH Function</h1>
<p>The <b>ACOTH</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. It is used to return the inverse hyperbolic cotangent of a number.</p>
<h3>Syntax</h3>
<p><b><em>ACOTH(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value less than -1 or greater than 1 entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOTH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>ACOTH</b> function,</li>
<li>enter the required argument,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p><b><em>ACOTH(number)</em></b></p>
<p>The <b>ACOTH</b> function has the following argument:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>number</em></b></td>
<td>A numeric value less than -1 or greater than 1.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ACOTH</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ACOTH</b> function.</p>
<p><img alt="ACOTH Function" src="../images/acoth.png" /></p>
</div>
</body>

View File

@ -17,49 +17,61 @@
<h1>ADDRESS Function</h1>
<p>The <b>ADDRESS</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#lookupreference" onclick="onhyperlinkclick(this)">lookup and reference functions</a>. It is used to return a text representation of a cell address.</p>
<h3>Syntax</h3>
<p><b><em>ADDRESS(row-number, col-number[ , [ref-type] [, [A1-ref-type-flag] [, sheet name]]])</em></b></p>
<p><em>where</em></p>
<p><em><b>row-number</b></em> is a row number to use in a cell address.</p>
<p><em><b>col-number</b></em> is a column number to use in a cell address.</p>
<p><em><b>ref-type</b></em> is a type of reference. It can be one of the following numeric values:</p>
<table style="width: 40%">
<tr>
<td><b>Numeric value</b></td>
<td><b>Meaning</b></td>
</tr>
<tr>
<td>1 or omitted</td>
<td>Absolute referencing</td>
</tr>
<tr>
<td>2</td>
<td>Absolute row; relative column</td>
</tr>
<tr>
<td>3</td>
<td>Relative row; absolute column</td>
</tr>
<tr>
<td>4</td>
<td>Relative referencing</td>
</tr>
</table>
<p><em><b>A1-ref-type-flag</b></em> 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.</p>
<p><em><b>sheet name</b></em> 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.</p>
<p>These arguments can be entered manually or included into the cells you make reference to.</p>
<p>To apply the <b>ADDRESS</b> function,</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Lookup and Reference</b> function group from the list,</li>
<li>click the <b>ADDRESS</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p><b><em>ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])</em></b></p>
<p>The <b>ADDRESS</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>row_num</em></b></td>
<td>A row number to use in a cell address.</td>
</tr>
<tr>
<td><b><em>column_num</em></b></td>
<td>A column number to use in a cell address.</td>
</tr>
<tr>
<td><b><em>abs_num</em></b></td>
<td>A type of reference. Possible values are listed in the table below.</td>
</tr>
<tr>
<td><b><em>a1</em></b></td>
<td>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.</td>
</tr>
<tr>
<td><b><em>sheet_text</em></b></td>
<td>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.</td>
</tr>
</table>
<p>The <b><em>abs_num</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Numeric value</b></th>
<th style="background-color: #f4f4f4"><b>Meaning</b></th>
</tr>
<tr>
<td>1 or omitted</td>
<td>Absolute referencing</td>
</tr>
<tr>
<td>2</td>
<td>Absolute row; relative column</td>
</tr>
<tr>
<td>3</td>
<td>Relative row; absolute column</td>
</tr>
<tr>
<td>4</td>
<td>Relative referencing</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ADDRESS</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ADDRESS</b> function.</p>
<p><img alt="ADDRESS Function" src="../images/address.png" /></p>
</div>
</body>

View File

@ -17,7 +17,7 @@
<h1>AGGREGATE Function</h1>
<p>The <b>AGGREGATE</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#mathtrigonometry" onclick="onhyperlinkclick(this)">math and trigonometry functions</a>. The function is used to return an aggregate in a list or database. The <b>AGGREGATE</b> function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.</p>
<h3>Syntax</h3>
<p><b><em>AGGREGATE(function_num, options, ref1 [, ref2], ...)</em></b></p>
<p><b><em>AGGREGATE(function_num, options, ref1, [ref2], ...)</em></b></p>
<p><em>where</em></p>
<p><b><em>function_num</em></b> is a numeric value that specifies which function to use. The possible values are listed in the table below.</p>
<table style="width: 40%">
@ -173,18 +173,8 @@
<td>QUARTILE.EXC(array, quart)</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AGGREGATE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <div class = "icon icon-function"></div> icon situated at the formula bar,
</li>
<li>select the <b>Math and trigonometry</b> function group from the list,</li>
<li>click the <b>AGGREGATE</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>AGGREGATE</b> function when the <b>SUM</b> function is applied.</p>
<p><img alt="AGGREGATE Function" src="../images/aggregate.png" /></p>

View File

@ -52,8 +52,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AMORDEGRC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -24,8 +24,8 @@
<p><b><em>pmt</em></b> is a payment amount.</p>
<p><b><em>pv</em></b> is a present value of the payments. It is an optional argument. If it is omitted, the function will assume <b><em>pv</em></b> to be 0.</p>
<p><b><em>type</em></b> 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 <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</p>
<p class="note"><b>Note:</b> cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> cash paid out (such as deposits to savings) is represented by negative numbers; cash received (such as dividend checks) is represented by positive numbers.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>FV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -52,8 +52,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AMORLINC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>AND(logical1, logical2, ...)</em></b></p>
<p>where <b><em>logical1/2/n</em></b> is a value entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AND</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AND</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -20,6 +20,7 @@
<p><b><em>ARABIC(x)</em></b></p>
<p><em>where</em></p>
<p><b><em>x</em></b> is a text representation of a Roman numeral: a string enclosed in quotation marks or a reference to a cell containing text.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> if an empty string ("") is used as an argument, the function returns the value 0.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ARABIC</b> function.</p>
<ol>

View File

@ -17,32 +17,41 @@
<h1>ARRAYTOTEXT Function</h1>
<p>The <b>ARRAYTOTEXT</b> function is one of the <a href="../UsageInstructions/InsertFunction.htm#textdata" onclick="onhyperlinkclick(this)">text and data functions</a>. It is used to return a range of data as a text string.</p>
<h3>Syntax</h3>
<p><b><em>=ARRAYTOTEXT(array, [format])</em></b></p>
<p><em>where</em></p>
<p><b><em>array</em></b> is the range of data to return as text,</p>
<p>
<b><em>[format]</em></b> is an optional argument. The following values are available:
<ul>
<li>0 the values in the text string will be separated by comma (set by default),</li>
<li>1 to 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.</li>
</ul>
</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ARRAYTOTEXT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>
click the <b>Insert function</b> <span class="icon icon-insertfunction"></span> icon situated at the top toolbar,
<br />or right-click within a selected cell and select the <b>Insert Function</b> option from the menu,
<br />or click the <span class="icon icon-function"></span> icon situated at the formula bar,
</li>
<li>select the <b>Text and data</b> function group from the list,</li>
<li>click the <b>ARRAYTOTEXT</b> function,</li>
<li>enter the required arguments separating them by comma,</li>
<li>press the <b>Enter</b> button.</li>
</ol>
<p><b><em>ARRAYTOTEXT(array, [format])</em></b></p>
<p>The <b>ARRAYTOTEXT</b> function has the following arguments:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Argument</b></th>
<th style="background-color: #f4f4f4"><b>Description</b></th>
</tr>
<tr>
<td><b><em>array</em></b></td>
<td>The range of data to return as text.</td>
</tr>
<tr>
<td><b><em>format</em></b></td>
<td>An optional argument. Possible values are listed in the table below.</td>
</tr>
</table>
<p>The <b><em>format</em></b> argument can be one of the following:</p>
<table style="width: 40%">
<tr>
<th style="background-color: #f4f4f4"><b>Format</b></th>
<th style="background-color: #f4f4f4"><b>Explanation</b></th>
</tr>
<tr>
<td><b><em>0</em></b></td>
<td>The values in the text string will be separated by comma (set by default).</td>
</tr>
<tr>
<td><b><em>1</em></b></td>
<td>To 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.</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ARRAYTOTEXT</b> function.</p>
<h3>Examples</h3>
<p>The figure below displays the result returned by the <b>ARRAYTOTEXT</b> function.</p>
<p><img alt="ARRAYTOTEXT Function" src="../images/arraytotext.png" /></p>
</div>
</body>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>ASC(text)</em></b></p>
<p>where <b><em>text</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASC</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>ASIN(x)</em></b></p>
<p>where <b><em>x</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASIN</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASIN</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>ASINH(x)</em></b></p>
<p>where <b><em>x</em></b> is any numeric value entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASINH</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ASINH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>ATAN(x)</em></b></p>
<p>where <b><em>x</em></b> is the tangent of the angle you wish to find, a numeric value entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATAN</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATAN</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>ATAN2(x, y)</em></b></p>
<p>where <b><em>x</em></b>, <b><em>y</em></b> are the x and y coordinates of a point, numeric values entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATAN2</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATAN2</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>ATANH(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value greater than - 1 but less than 1 entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATANH</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>ATANH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>AVEDEV(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is up to 30 numeric values entered manually or included into the cells you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVEDEV</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVEDEV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,7 @@
<h3>Syntax</h3>
<p><b><em>AVERAGE(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is up to 255 numerical values entered manually or included into the cells you make reference to.</p>
<h2>How to use AVERAGE</h2>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>AVERAGEA(argument-list)</em></b></p>
<p>where <b><em>argumenti-list</em></b> is up to 255 values entered manually or included into the cells you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEA</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEA</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -22,8 +22,8 @@
<p><b><em>cell-range</em></b> is the selected range of cells to apply the criterion to.</p>
<p><b><em>selection-criteria</em></b> is the criterion you wish to apply, a value entered manually or included into the cell you make reference to.</p>
<p><b><em>average-range</em></b> is the selected range of cells you need to find the average in.</p>
<h3>Notes</h3>
<p class="note"><b><em>average-range</em></b> is an optional argument. If it is omitted, the function will find the average in <b><em>cell-range</em></b>.</p>
<h2>How to use AVERAGEIF</h2>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEIF</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -23,8 +23,8 @@
<p><b><em>criteria-range-1</em></b> is the first selected range of cells to apply the <em>criteria-1</em> to. It is a required argument. </p>
<p><b><em>criteria-1</em></b> is the first condition that must be met. It is applied to the <em>criteria-range-1</em> and used to determine the cells in the <em>average-range</em> to average. It can be a value entered manually or included into the cell you make reference to. It is a required argument.</p>
<p><b><em>criteria-range-2, criteria-2, ...</em></b> are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> 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.</p>
<h2>How to use AVERAGEIFS</h2>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>AVERAGEIFS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>number</em></b> is a number you want to convert. An integer greater than or equal to 0 and less than 2^53.</p>
<p><b><em>base</em></b> 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.</p>
<p><b><em>min-lenght</em></b> 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.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BASE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>X</em></b> is the value at which to evaluate the function,</p>
<p><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELI</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>X</em></b> is the value at which to evaluate the function,</p>
<p><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELJ</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>X</em></b> is the value at which to evaluate the function, a numeric value greater than 0,</p>
<p><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELK</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>X</em></b> is the value at which to evaluate the function, a numeric value greater than 0,</p>
<p><b><em>N</em></b> is the order of the Bessel function, a numeric value greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BESSELY</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -25,7 +25,7 @@
<p><b><em>cumulative</em></b> 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.</p>
<p><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETA.DIST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -24,7 +24,7 @@
<p><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETA.INV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -24,7 +24,7 @@
<p><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETADIST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -24,7 +24,7 @@
<p><b><em>beta</em></b> is the second parameter of the distribution, a numeric value greater than 0.</p>
<p><b><em>A</em></b> is the lower bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 0 is used.</p>
<p><b><em>B</em></b> is the upper bound to the interval of <b><em>x</em></b>. It is an optional parameter. If it is omitted, the default value of 1 is used.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BETAINV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>BIN2DEC(number)</em></b></p>
<p>where <b><em>number</em></b> is a binary number entered manually or included into the cell you make reference to.</p>
<p class="note"><b>Note:</b> if the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the <b>#NUM!</b> error.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> if the argument is not recognised as a binary number, or contains more than 10 characters, the function will return the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BIN2DEC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,8 @@
<p><em>where</em></p>
<p><b><em>number</em></b> is a binary number entered manually or included into the cell you make reference to.</p>
<p><b><em>num-hex-digits</em></b> is the number of digits to display. If omitted, the function will use the minimum number.</p>
<p class="note"><b>Note:</b> 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 <b><em>num-hex-digits</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> 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 <b><em>num-hex-digits</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BIN2HEX</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,8 @@
<p><em>where</em></p>
<p><b><em>number</em></b> is a binary number entered manually or included into the cell you make reference to.</p>
<p><b><em>num-hex-digits</em></b> is the number of digits to display. If omitted, the function will use the minimum number.</p>
<p class="note"><b>Note:</b> 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 <b><em>num-hex-digits</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> 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 <b><em>num-hex-digits</em></b> number is less than or equal to 0, the function will return the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BIN2OCT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -23,7 +23,7 @@
<p><b><em>probability-s</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p><b><em>number-s</em></b> is the minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0.</p>
<p><b><em>number-s2</em></b> is an optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than <b><em>number-s</em></b> and less than or equal to <b><em>trials</em></b>.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOM.DIST.RANGE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -23,7 +23,7 @@
<p><b><em>trials</em></b> is the number of trials, a numeric value greater than or equal to <b><em>number-s</em></b>.</p>
<p><b><em>probability-s</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p><b><em>cumulative</em></b> 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.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOM.DIST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>trials</em></b> is the number of trials, a numeric value greater than 0.</p>
<p><b><em>probability-s</em></b> is the success probability of each trial, a numeric value greater than 0 but less than 1.</p>
<p><b><em>alpha</em></b> is the criterion, a numeric value greater than 0 but less than 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOM.INV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -23,7 +23,7 @@
<p><b><em>number-trials</em></b> is the number of trials, a numeric value greater than or equal to <b><em>number-successes</em></b>.</p>
<p><b><em>success-probability</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p><b><em>cumulative-flag</em></b> 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.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BINOMDIST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number1</em></b> is a numeric value in decimal form greater than or equal to 0,</p>
<p><b><em>number2</em></b> is a numeric value in decimal form greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The value of each bit position is counted only if both parameter's bits at that position are 1.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITAND</b> function.</p>
<ol>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number</em></b> is an integer greater than or equal to 0,</p>
<p><b><em>shift_amount</em></b> is a number of bits by which you want to shift <b><em>number</em></b>, an integer.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>Shifting a number left is equivalent to adding zeros (0) to the right of the binary representation of the number.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITLSHIFT</b> function.</p>
<ol>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number1</em></b> is a numeric value in decimal form greater than or equal to 0,</p>
<p><b><em>number2</em></b> is a numeric value in decimal form greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The value of each bit position is counted if either of the parameters has 1 at that position.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITOR</b> function.</p>
<ol>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number</em></b> is an integer greater than or equal to 0,</p>
<p><b><em>shift_amount</em></b> is a number of bits by which you want to shift <b><em>number</em></b>, an integer.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>Shifting a number right is equivalent to removing digits from the rightmost side of the binary representation of the number.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITRSHIFT</b> function.</p>
<ol>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number1</em></b> is a numeric value in decimal form greater than or equal to 0,</p>
<p><b><em>number2</em></b> is a numeric value in decimal form greater than or equal to 0.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p>The value of each bit position is 1 when the bit positions of the parameters are different.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>BITXOR</b> function.</p>
<ol>

View File

@ -22,7 +22,7 @@
<p><b><em>x</em></b> is the number you wish to round up.</p>
<p><b><em>significance</em></b> 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.</p>
<p><b><em>mode</em></b> 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.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CEILING.MATH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>x</em></b> is the number you wish to round up.</p>
<p><b><em>significance</em></b> 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.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CEILING.PRECISE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>x</em></b> is the number you wish to round up,</p>
<p><b><em>significance</em></b> is the multiple of significance you wish to round up to,</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note</b>: if the values of <b><em>x</em></b> and <b><em>significance</em></b> have different signs, the function returns the <b>#NUM!</b> error.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CEILING</b> function.</p>
<ol>

View File

@ -170,6 +170,7 @@
<td>D8</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CELL</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CHAR(number)</em></b></p>
<p>where <b><em>number</em></b> (from 1 to 255) is a data entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHAR</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHAR</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>x</em></b> is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</p>
<p><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHIDIST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>probability</em></b> is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</p>
<p><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHIINV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>x</em></b> is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</p>
<p><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.DIST.RT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>x</em></b> is the value at which you want to evaluate the chi-squared distribution. A numeric value greater than or equal to 0.</p>
<p><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p><b><em>cumulative</em></b> 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.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.DIST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>probability</em></b> is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</p>
<p><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.INV.RT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>probability</em></b> is the probability associated with the chi-squared distribution. A numeric value greater than 0 and less than 1.</p>
<p><b><em>deg-freedom</em></b> is the number of degrees of freedom. A numeric value greater than or equal to 1 but less than or equal to 10^10.</p>
<p>The values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.INV</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,8 @@
<p><em>where</em></p>
<p><b><em>actual-range</em></b> is the range of observed (actual) values.</p>
<p><b><em>expected-range</em></b> is the range of expected values.</p>
<p>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.</p>
<h3>Notes</h3>
<p>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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHISQ.TEST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,8 @@
<p><em>where</em></p>
<p><b><em>actual-range</em></b> is the range of observed (actual) values.</p>
<p><b><em>expected-range</em></b> is the range of expected values.</p>
<p>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.</p>
<h3>Notes</h3>
<p>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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHITEST</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,8 @@
<p><em>where</em></p>
<p><b><em>index</em></b> is the position of the value in the <b><em>argument-list</em></b>, a numeric value greater than or equal to 1 but less than the number of the number of values in the <b><em>argument-list</em></b>,</p>
<p><b><em>argument-list</em></b> is the list of values or the selected range of cells you need to analyze.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSE</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -23,7 +23,8 @@
<p><b><em>array</em></b> is used to set the array containing the columns to be returned in a new array.</p>
<p><b><em>col_num1</em></b> is used to set the first column number to be returned.</p>
<p><b><em>col_num2</em></b> is an optional argument. It is used to set additional column numbers to be returned.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSECOLS</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSECOLS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>

View File

@ -23,7 +23,8 @@
<p><b><em>array</em></b> is used to set the array containing the rows to be returned in a new array.</p>
<p><b><em>row_num1</em></b> is used to set the first row number to be returned.</p>
<p><b><em>row_num2</em></b> is an optional argument. It is used to set additional row numbers to be returned.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSEROWS</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CHOOSEROWS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CLEAN(string)</em></b></p>
<p>where <b><em>string</em></b> is a string with nonprintable characters you need to remove, data included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CLEAN</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CLEAN</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CODE(string)</em></b></p>
<p>where <b><em>string</em></b> is a data entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CODE</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CODE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COLUMN([reference])</em></b></p>
<p>where <b><em>reference</em></b> is a reference to a cell.</p>
<p class="note"><b>Note</b>: <b><em>reference</em></b> is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the <b>COLUMN</b> function result. </p>
<h3>Notes</h3>
<p class="note"><b>Note</b>: <b><em>reference</em></b> is an optional argument. If it is omitted, the function will return the column number of a cell selected to display the <b>COLUMN</b> function result. </p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COLUMN</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COLUMNS(array)</em></b></p>
<p>where <b><em>array</em></b> is a reference to a range of cells.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COLUMNS</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COLUMNS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number</em></b> is a number of items, a numeric value greater than or equal to 0.</p>
<p><b><em>number-chosen</em></b> is a number of items in a combination, a numeric value greater than or equal to 0 but less than <b><em>number</em></b>.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COMBIN</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -21,7 +21,7 @@
<p><em>where</em></p>
<p><b><em>number</em></b> is the total number of items, a numeric value greater than or equal to 0.</p>
<p><b><em>number-chosen</em></b> is a number of items in a combination, a numeric value greater than or equal to 0 but less than <b><em>number</em></b>.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COMBINA</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>real-number</em></b> is the real part of the complex number.</p>
<p><b><em>imaginary-number</em></b> is the imaginary part of the complex number.</p>
<p><b><em>suffix</em></b> 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 <b><em>suffix</em></b> to be "i".</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COMPLEX</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CONCAT(text1, text2, ...)</em></b></p>
<p>where <b><em>text1(2)</em></b> is up to 265 data values entered manually or included into the cells you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONCAT</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONCAT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CONCATENATE(text1, text2, ...)</em></b></p>
<p>where <b><em>text1(2)</em></b> is up to 265 data values entered manually or included into the cells you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONCATENATE</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONCATENATE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -22,7 +22,7 @@
<p><b><em>alpha</em></b> is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</p>
<p><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p><b><em>size</em></b> is the sample size, a numeric value greater than or equal to 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONFIDENCE.NORM</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>alpha</em></b> is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</p>
<p><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p><b><em>size</em></b> is the sample size, a numeric value greater than 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONFIDENCE.T</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>alpha</em></b> is the significance level used to compute the confidence level, a numeric value greater than 0 but less than 1.</p>
<p><b><em>standard-dev</em></b> is the population standard deviation, a numeric value greater than 0.</p>
<p><b><em>size</em></b> is the sample size, a numeric value greater than or equal to 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONFIDENCE</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -683,6 +683,7 @@
<td>"ki"</td>
</tr>
</table>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CONVERT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CORREL(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note</b>: if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<h3>Notes</h3>
<p class="note"><b>Note</b>: if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CORREL</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COS(x)</em></b></p>
<p>where <b><em>x</em></b> is a numeric value entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COS</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COSH(x)</em></b></p>
<p>where <b><em>x</em></b> is any numeric value entered manually or included into the cell you make reference to.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COSH</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COSH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COT(x)</em></b></p>
<p>where <b><em>x</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COT</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COTH(x)</em></b></p>
<p>where <b><em>x</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COTH</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COTH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COUNT(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNT</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COUNTA(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTA</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTA</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COUNTBLANK(argument-list)</em></b></p>
<p>where <b><em>argument-list</em></b> is a range of cells you wish to count.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTBLANK</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTBLANK</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -21,7 +21,8 @@
<p><em>where</em></p>
<p><b><em>cell-range</em></b> is the selected range of cells you wish to count applying the specified criterion,</p>
<p><b><em>selection-criteria</em></b> is a criterion you wish to apply entered manually or included into the cell you make reference to.</p>
<p class="note"><b>Note</b>: <b><em>selection-criteria</em></b> 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.</p>
<h3>Notes</h3>
<p class="note"><b>Note</b>: <b><em>selection-criteria</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTIF</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,8 +22,8 @@
<p><b><em>criteria-range-1</em></b> is the first selected range of cells to apply the <em>criteria-1</em> to. It is a required argument.</p>
<p><b><em>criteria-1</em></b> is the first condition that must be met. It is applied to the <em>criteria-range-1</em> and used to determine the cells in the <em>criteria-range-1</em> to count. It can be a value entered manually or included into the cell you make reference to. It is a required argument.</p>
<p><b><em>criteria-range-2, criteria-2, ...</em></b> are additional ranges of cells and their corresponding criteria. These arguments are optional. You can add up to 127 ranges and corresponding criteria.</p>
<p class="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. If you want to find a question mark or asterisk, type a tilde (~) before the character.</p>
<h2>How to use COUNTIFS</h2>
<h3>Notes</h3>
<p class="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. If you want to find a question mark or asterisk, type a tilde (~) before the character.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUNTIFS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -49,8 +49,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPDAYBS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -49,8 +49,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPDAYS</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -49,8 +49,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPDAYSNC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -49,8 +49,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPNCD</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -49,8 +49,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPNUM</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -49,8 +49,8 @@
<td>European 30/360</td>
</tr>
</table>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p>The values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> dates must be entered by using the DATE function.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COUPPCD</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COVAR(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note:</b> if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COVAR</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COVARIANCE.P(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note:</b> if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COVARIANCE.P</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>COVARIANCE.S(array-1, array-2)</em></b></p>
<p>where <b><em>array-1(2)</em></b> is the selected range of cells with the same number of elements.</p>
<p class="note"><b>Note:</b> if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> if <b><em>array-1(2)</em></b> contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>COVARIANCE.S</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -22,7 +22,7 @@
<p><b><em>number-trials</em></b> is the number of trials, a numeric value greater than or equal to 0.</p>
<p><b><em>success-probability</em></b> is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p><b><em>alpha</em></b> is the criterion, a numeric value greater than or equal to 0 but less than or equal to 1.</p>
<p>The numeric values can be entered manually or included into the cells you make reference to.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CRITBINOM</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CSC(x)</em></b></p>
<p>where <b><em>x</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CSC</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CSC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -19,7 +19,8 @@
<h3>Syntax</h3>
<p><b><em>CSCH(x)</em></b></p>
<p>where <b><em>x</em></b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CSCH</b> function.</p>
<h3>Notes</h3>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CSCH</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>
<li>click the <b>Insert function</b> <div class = "icon icon-insertfunction"></div> icon situated at the top toolbar,

View File

@ -25,8 +25,8 @@
<p><b><em>start_period</em></b> is the first period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p><b><em>end_period</em></b> is the last period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p><b><em>type</em></b> 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 <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</p>
<p class="note"><b>Note:</b> 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.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CUMIPMT</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

View File

@ -25,8 +25,8 @@
<p><b><em>start_period</em></b> is the first period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p><b><em>end_period</em></b> is the last period included into the calculation. The value must be from <b><em>1</em></b> to <b><em>nper</em></b>.</p>
<p><b><em>type</em></b> 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 <b><em>type</em></b> is set to 1, the payments are due at the beginning of the period.</p>
<p class="note"><b>Note:</b> 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.</p>
<p>The numeric values can be entered manually or included into the cell you make reference to.</p>
<h3>Notes</h3>
<p class="note"><b>Note:</b> 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.</p>
<p><a href="../UsageInstructions/InsertFunction.htm#applyfunction" onclick="onhyperlinkclick(this)">How to apply</a> the <b>CUMPRINC</b> function.</p>
<ol>
<li>select the cell where you wish to display the result,</li>

Some files were not shown because too many files have changed in this diff Show More